public ControllerRecipe(List <Recipe> recipes, ControllerIngredient controllerIngredient) { this.recipes = recipes; this.controllerIngredient = controllerIngredient; }
/// <summary> /// Пустой список рецептов /// </summary> public ControllerRecipe() { recipes = new List <Recipe>(); controllerIngredient = new ControllerIngredient(); }