Ejemplo n.º 1
0
 public HomeController(IRecipeDAL recipeDAL, IUserDAL userDal, IRecipeIngredientDAL recipeIngredientDAL, IIngredientDAL ingredientDAL, IPreparationStepsDAL preparationStepsDAL)
 {
     this.recipeDAL           = recipeDAL;
     this.userDAL             = userDal;
     this.recipeIngredientDAL = recipeIngredientDAL;
     this.ingredientDAL       = ingredientDAL;
     this.preparationStepsDAL = preparationStepsDAL;
 }