Пример #1
0
 public ShopController(IShopServices shopServices)
 {
     this._shopServices = shopServices;
 }
Пример #2
0
 public ShoppingCartController(IShopServices service, IMapper mapper, IProductServices productService)
 {
     this.service        = service;
     this.mapper         = mapper;
     this.productService = productService;
 }