Example #1
0
 public void RecordIncomeSync(IncomeCreationBase income)
 {
     income.AccountNumber = this.AccountNumber;
     this._repository.RecordIncomeSync(income);
 }
Example #2
0
 public async Task RecordIncome(IncomeCreationBase income)
 {
     income.AccountNumber = this.AccountNumber;
     await this._repository.RecordIncome(income);
 }