Beispiel #1
0
 public ProductController(IProductService service, IShopperService shopperService)
 {
     _productService = service;
     _shopperService = shopperService;
 }
Beispiel #2
0
 public SortController(ISortService sortService, IProductService productService, IShopperService shopperService)
 {
     _sortService    = sortService;
     _productService = productService;
     _shopperService = shopperService;
 }
Beispiel #3
0
 public ShopperController(IShopperService service)
 {
     _service = service;
 }