Ejemplo n.º 1
0
 public async Task <Product[]> GetAllProducts()
 {
     return(await _parkRepository.GetAllProductsAsync());
 }
Ejemplo n.º 2
0
 public async Task <ProductModel[]> GetAllProductsAsync()
 {
     return(_mapper.Map <ProductModel[]>(await _parkRepository.GetAllProductsAsync()));
 }