public async Task <IEnumerable <ShopDto> > GetShops()
 => await shopsService.GetShops();
Example #2
0
 public IActionResult Index()
 {
     ViewBag.Title = "Магазины";
     return(View(_mapper.Map <List <ShopModel> >(_shopsService.GetShops(_mapper))));
 }