api/src/main/java/org/apache/fineract/cn/teller/api/v1/domain/TellerTransaction.java [87:146]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    this.transactionDate = transactionDate;
  }

  public String getCustomerIdentifier() {
    return this.customerIdentifier;
  }

  public void setCustomerIdentifier(final String customerIdentifier) {
    this.customerIdentifier = customerIdentifier;
  }

  public String getProductIdentifier() {
    return this.productIdentifier;
  }

  public void setProductIdentifier(final String productIdentifier) {
    this.productIdentifier = productIdentifier;
  }

  public String getProductCaseIdentifier() {
    return this.productCaseIdentifier;
  }

  public void setProductCaseIdentifier(final String productCaseIdentifier) {
    this.productCaseIdentifier = productCaseIdentifier;
  }

  public String getCustomerAccountIdentifier() {
    return this.customerAccountIdentifier;
  }

  public void setCustomerAccountIdentifier(final String customerAccountIdentifier) {
    this.customerAccountIdentifier = customerAccountIdentifier;
  }

  public String getTargetAccountIdentifier() {
    return this.targetAccountIdentifier;
  }

  public void setTargetAccountIdentifier(final String targetAccountIdentifier) {
    this.targetAccountIdentifier = targetAccountIdentifier;
  }

  public String getClerk() {
    return this.clerk;
  }

  public void setClerk(final String clerk) {
    this.clerk = clerk;
  }

  public BigDecimal getAmount() {
    return this.amount;
  }

  public void setAmount(final BigDecimal amount) {
    this.amount = amount;
  }

  public String getState() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



service/src/main/java/org/apache/fineract/cn/teller/service/internal/repository/TellerTransactionEntity.java [112:171]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    this.transactionDate = transactionDate;
  }

  public String getCustomerIdentifier() {
    return this.customerIdentifier;
  }

  public void setCustomerIdentifier(final String customerIdentifier) {
    this.customerIdentifier = customerIdentifier;
  }

  public String getProductIdentifier() {
    return this.productIdentifier;
  }

  public void setProductIdentifier(final String productIdentifier) {
    this.productIdentifier = productIdentifier;
  }

  public String getProductCaseIdentifier() {
    return this.productCaseIdentifier;
  }

  public void setProductCaseIdentifier(final String productCaseIdentifier) {
    this.productCaseIdentifier = productCaseIdentifier;
  }

  public String getCustomerAccountIdentifier() {
    return this.customerAccountIdentifier;
  }

  public void setCustomerAccountIdentifier(final String customerAccountIdentifier) {
    this.customerAccountIdentifier = customerAccountIdentifier;
  }

  public String getTargetAccountIdentifier() {
    return this.targetAccountIdentifier;
  }

  public void setTargetAccountIdentifier(final String targetAccountIdentifier) {
    this.targetAccountIdentifier = targetAccountIdentifier;
  }

  public String getClerk() {
    return this.clerk;
  }

  public void setClerk(final String clerk) {
    this.clerk = clerk;
  }

  public BigDecimal getAmount() {
    return this.amount;
  }

  public void setAmount(final BigDecimal amount) {
    this.amount = amount;
  }

  public String getState() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



