public IngredientsNavigation(IIngredientsControl ingredients)
 {
     Ingredients = ingredients;
 }
Exemple #2
0
 public RecipesIngredientsNavigation(int idRecipe, IIngredientsControl ingredients, IRecipeIngredientsControl recipeIngredients)
 {
     IdRecipe          = idRecipe;
     Ingredients       = ingredients;
     RecipeIngredients = recipeIngredients;
 }
Exemple #3
0
 public IngredientsContextMenuNavigation(int idIngredient, int page, IIngredientsControl ingredients)
 {
     Ingredients  = ingredients;
     IdIngredient = idIngredient;
     Page         = page;
 }