Ejemplo n.º 1
0
 public ShopController(IShopServices shopServices)
 {
     this._shopServices = shopServices;
 }
Ejemplo n.º 2
0
 public ShoppingCartController(IShopServices service, IMapper mapper, IProductServices productService)
 {
     this.service        = service;
     this.mapper         = mapper;
     this.productService = productService;
 }