public ProductsController(ILookupProducts productsService, IPerformProductCommands productCommander)
 {
     _productsService = productsService;
     _productCommands = productCommander;
 }
 public ProductsController(ILookupProducts productLookups)
 {
     _productLookups = productLookups;
 }
Пример #3
0
 public ProductsController(ILookupProducts products, IProductCommands productCommands)
 {
     _products        = products;
     _productCommands = productCommands;
 }
 public ProductsController(ILookupProducts productLookup, ICommandProducts commandProducts)
 {
     _productLookup   = productLookup;
     _commandProducts = commandProducts;
 }