Example #1
0
 public async Task <int> AddBankAccount(int hhId, string ownerId, string name, AccountType acctType, float startingBal, float currBal, float lowBal)
 {
     return(await db.AddBankAccount(hhId, ownerId, name, acctType, startingBal, currBal, lowBal));
 }