public System.Threading.Tasks.Task <string> UpdateTransactionAsync(LedgerService.TransactionModel transaction)
 {
     return(base.Channel.UpdateTransactionAsync(transaction));
 }
 public string UpdateTransaction(LedgerService.TransactionModel transaction)
 {
     return(base.Channel.UpdateTransaction(transaction));
 }
 public System.Threading.Tasks.Task <string> MakeWithdrawalAsync(LedgerService.TransactionModel withdrawal)
 {
     return(base.Channel.MakeWithdrawalAsync(withdrawal));
 }
 public string MakeWithdrawal(LedgerService.TransactionModel withdrawal)
 {
     return(base.Channel.MakeWithdrawal(withdrawal));
 }
 public System.Threading.Tasks.Task <string> MakeDepositAsync(LedgerService.TransactionModel deposit)
 {
     return(base.Channel.MakeDepositAsync(deposit));
 }
 public string MakeDeposit(LedgerService.TransactionModel deposit)
 {
     return(base.Channel.MakeDeposit(deposit));
 }