Exemplo n.º 1
0
 public MealController(IRecipeDAL recipeDAL, IMealPlanDAL mealPlanDAL, IAuthProvider authProvider, IIngredientDAL ingredientDAL)
 {
     this.recipeDAL     = recipeDAL;
     this.mealPlanDAL   = mealPlanDAL;
     this.ingredientDAL = ingredientDAL;
     this.authProvider  = authProvider;
 }
Exemplo n.º 2
0
 public RecipeBookApiController(IRecipeDAL recipeDAL, ApiAuthProvider authProvider, IWebsiteRequestDAL websiteRequestDAL, EmailProvider emailProvider)
 {
     this.recipeDAL         = recipeDAL;
     this.authProvider      = authProvider;
     this.websiteRequestDAL = websiteRequestDAL;
     this.emailProvider     = emailProvider;
 }
Exemplo n.º 3
0
 public APIController(IAuthProvider authProvider, IUsersDAL userDAL, EmailProvider emailProvider, IFamilyDAL familyDAL, IRecipeDAL recipeDAL)
 {
     this.authProvider  = authProvider;
     this.userDAL       = userDAL;
     this.emailProvider = emailProvider;
     this.familyDAL     = familyDAL;
     this.recipeDAL     = recipeDAL;
 }
Exemplo n.º 4
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;
 }
 public RecipeController(IRecipeDAL recipeDAL, IIngredientDAL ingredientDAL, IAuthProvider authProvider)
 {
     this.recipeDAL     = recipeDAL;
     this.ingredientDAL = ingredientDAL;
     this.authProvider  = authProvider;
 }
Exemplo n.º 6
0
 public MealController(IRecipeDAL recipeDAL, IUserDAL userDAL, IMealDAL mealDAL)
 {
     this.recipeDAL = recipeDAL;
     this.userDAL   = userDAL;
     this.mealDAL   = mealDAL;
 }
Exemplo n.º 7
0
 public RecipeController(IRecipeDAL recipeDAL, IAuthProvider authProvider)
 {
     this.recipeDAL    = recipeDAL;
     this.authProvider = authProvider;
 }
 public RecipeController(IRecipeDAL recipeDal, ICuisineTypeDAL cuisineTypeDal)
 {
     this.recipeDal      = recipeDal;
     this.cuisineTypeDal = cuisineTypeDal;
 }
Exemplo n.º 9
0
 public HomeController(IRecipeDAL recipeDal)
 {
     this.recipeDal = recipeDal;
 }
Exemplo n.º 10
0
 public RecipesController(IRecipeDAL dal)
 {
     this.dal = dal;
 }
Exemplo n.º 11
0
 public HomeController(IRecipeDAL dal) // inject the IRecipeDAL
 {
     this.dal = dal;
 }