예제 #1
0
 public RecipeIngredientsController(IRecipeIngredientDAO recipeIngredientsDAO, IRecipeDAO recipeDAO)
 {
     this.recipeIngredientsDAO = recipeIngredientsDAO;
     this.recipeDAO            = recipeDAO;
 }
예제 #2
0
 public RecipesController(IRecipeDAO recipedao, IIngredientDAO IngredientDAO, IRecipeIngredientDAO RecipeIngredientDAO)
 {
     this.recipeDAO           = recipedao;
     this.ingredientDAO       = IngredientDAO;
     this.recipeIngredientDAO = RecipeIngredientDAO;
 }