All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.networknt.eventuate.test.domain.CreateAccountCommand Maven / Gradle / Ivy

There is a newer version: 1.5.1
Show newest version
package com.networknt.eventuate.test.domain;

import java.math.BigDecimal;

public class CreateAccountCommand implements AccountCommand {
  private BigDecimal initialBalance;

  public CreateAccountCommand(BigDecimal initialBalance) {
    this.initialBalance = initialBalance;
  }

  public BigDecimal getInitialBalance() {
    return initialBalance;
  }

  public void setInitialBalance(BigDecimal initialBalance) {
    this.initialBalance = initialBalance;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy