Example #1
0
 public CustomerDTO GetCustomerByName(string Name)
 {
     return(_customerDAL.GetCustomerByName(Name));
 }
Example #2
0
 public async Task <Customer> GetCustomerByName(string name)
 {
     return(await _customerDAL.GetCustomerByName(name));
 }