예제 #1
0
 public async Task <List <Customer> > GetAsync()
 {
     try
     {
         return(await _customerRespository.GetCustomersAsync(10, "ASC"));
     }
     catch (Exception ex)
     {
         throw new ArgumentException(ex.Message);
     }
 }