public RecipeController(IRecipePlanService _recipePlanService,
                         IRecipeService _recipeService,
                         UserManager <IdentityUser> _userManager)
 {
     recipePlanService = _recipePlanService;
     recipeService     = _recipeService;
     userManager       = _userManager;
 }
Exemple #2
0
 public DashboardController(IPlanService _planService,
                            IRecipePlanService _recipePlanService,
                            IRecipeService _recipeService,
                            IUserService _userService,
                            UserManager <IdentityUser> _userManager)
 {
     planService       = _planService;
     recipePlanService = _recipePlanService;
     recipeService     = _recipeService;
     userService       = _userService;
     userManager       = _userManager;
 }
Exemple #3
0
 public PlanController(IDayNameService _dayNameService,
                       IPlanService _planService,
                       IRecipeService _recipeService,
                       IRecipePlanService _recipePlanService,
                       UserManager <IdentityUser> _userManager)
 {
     dayNameService    = _dayNameService;
     planService       = _planService;
     recipeService     = _recipeService;
     recipePlanService = _recipePlanService;
     userManager       = _userManager;
 }