Exemplo n.º 1
0
 public List <Customer> ShowCustomers(string accountNo)
 {
     if (accountNo.IsNullOrWhiteSpace())
     {
         return(gateway.GetCustomers());
     }
     else
     {
         return(gateway.GetSpecificCustomer(accountNo));
     }
 }