public System.Threading.Tasks.Task <int> CreateCustomerAsync(Pocos.Customer customer)
 {
     return(base.Channel.CreateCustomerAsync(customer));
 }
 public System.Threading.Tasks.Task EditCustomerAsync(Pocos.Customer customerToEdit)
 {
     return(base.Channel.EditCustomerAsync(customerToEdit));
 }
 public int CreateCustomer(Pocos.Customer customer)
 {
     return(base.Channel.CreateCustomer(customer));
 }
 public void EditCustomer(Pocos.Customer customerToEdit)
 {
     base.Channel.EditCustomer(customerToEdit);
 }
 public System.Threading.Tasks.Task <System.Collections.Generic.List <Pocos.BankAccount> > GetAllCustomerBankAccountsAsync(Pocos.Customer customer)
 {
     return(base.Channel.GetAllCustomerBankAccountsAsync(customer));
 }
 public System.Collections.Generic.List <Pocos.BankAccount> GetAllCustomerBankAccounts(Pocos.Customer customer)
 {
     return(base.Channel.GetAllCustomerBankAccounts(customer));
 }
 public System.Threading.Tasks.Task DeleteCustomerAsync(Pocos.Customer customerToDelete)
 {
     return(base.Channel.DeleteCustomerAsync(customerToDelete));
 }
 public void DeleteCustomer(Pocos.Customer customerToDelete)
 {
     base.Channel.DeleteCustomer(customerToDelete);
 }