public async Task <ActionResult <IEnumerable <CustomerDapper> > > GetAll()
 {
     return(Ok(await _customerData.GetAllAsync()));
 }
Beispiel #2
0
 public async Task <ICollection <Customer> > GetAllAsync()
 {
     return(await _customerData.GetAllAsync());
 }