public ProductsController(ILookupProducts productsService, IPerformProductCommands productCommander) { _productsService = productsService; _productCommands = productCommander; }
public ProductsController(ILookupProducts productLookups) { _productLookups = productLookups; }
public ProductsController(ILookupProducts products, IProductCommands productCommands) { _products = products; _productCommands = productCommands; }
public ProductsController(ILookupProducts productLookup, ICommandProducts commandProducts) { _productLookup = productLookup; _commandProducts = commandProducts; }