public ViewResult Index()
 {
     var catalogItems = _shopCatalogService.ListCatalogItems();
     var viewModel = new ShopCatalogViewModel {CatalogItems = catalogItems};
     return View(viewModel);
 }