public KitchenController(IStorageProductsService storageProductsService, IRecipesSearcherService recipesSearcher)
 {
     this.storageProductsService = storageProductsService;
     this.recipesSearcher = recipesSearcher;
 }
 public StorageProductsController(IStorageProductsService storageProductsService)
 {
     this.storageProductsService = storageProductsService;
 }
 public StorageProductsGridController(IStorageProductsService storageProducts)
 {
     this.storageProducts = storageProducts;
 }
 public RecipesSearcherService(IStorageProductsService storageProducts, IRecipesProvider recipeProvider)
 {
     this.storageProducts = storageProducts;
     this.recipeProvider = recipeProvider;
 }