public System.Threading.Tasks.Task <Enterprise.Logic.Entities.Customer> AddCustomerAsync(Enterprise.Logic.Entities.Customer customer)
 {
     return(base.Channel.AddCustomerAsync(customer));
 }
 public bool UpdateCustomer(Enterprise.Logic.Entities.Customer customer)
 {
     return(base.Channel.UpdateCustomer(customer));
 }
 public Enterprise.Logic.Entities.Customer AddCustomer(Enterprise.Logic.Entities.Customer customer)
 {
     return(base.Channel.AddCustomer(customer));
 }