public ShopCatalogController(IShopCatalogService shopCatalogService)
 {
     _shopCatalogService = shopCatalogService;
 }
 public ShopCatalogController()
 {
     _shopCatalogService = new ShopCatalogService();
 }