public FlavorsController(PierreMarketContext db)
 {
     _db = db;
 }
 public OrdersController(UserManager <ApplicationUser> userManager, PierreMarketContext db)
 {
     _userManager = userManager;
     _db          = db;
 }
예제 #3
0
 public HomeController(PierreMarketContext db)
 {
     _db = db;
 }
 public AccountController(UserManager <ApplicationUser> userManager, SignInManager <ApplicationUser> signInManager, PierreMarketContext db)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _db            = db;
 }
예제 #5
0
 public TreatsController(PierreMarketContext db)
 {
     _db = db;
 }