Example #1
0
 public RecipePlansService(PlanFoodContext context)
 {
     _context = context;
 }
Example #2
0
 public PlanService(PlanFoodContext context)
 {
     this._context = context;
 }
Example #3
0
 public PlanService(PlanFoodContext _context)
 {
     context = _context;
 }
Example #4
0
 public DayNameService(PlanFoodContext _context)
 {
     context = _context;
 }
Example #5
0
 public RecipeService(PlanFoodContext _context)
 {
     context = _context;
 }
Example #6
0
 public DayNameService(PlanFoodContext planFoodContext)
 {
     _context = planFoodContext;
 }
Example #7
0
 public BookService(PlanFoodContext planFoodContext)
 {
     _context = planFoodContext;
 }
Example #8
0
 public UserService(PlanFoodContext _context)
 {
     context = _context;
 }
Example #9
0
 public BookService(PlanFoodContext _context)
 {
     context = _context;
 }
Example #10
0
 public AdminService(UserManager <User> userManager, PlanFoodContext context)
 {
     _userManager = userManager;
     _context     = context;
 }