Exemple #1
0
 public SellController(BrewsyContext brewsyContext)
 {
     _brewsyContext = brewsyContext;
 }
 public BeersController(BrewsyContext context)
 {
     _context = context;
 }
Exemple #3
0
 public ChargeController(IChargeService chargeService, BrewsyContext context)
 {
     _chargeService = chargeService;
     _context       = context;
 }
Exemple #4
0
 public PurchasesController(BrewsyContext context)
 {
     _context = context;
 }
Exemple #5
0
 public ChargeService(BrewsyContext brewsyContext)
 {
     _brewsyContext = brewsyContext;
 }
Exemple #6
0
 public HomeController(BrewsyContext context)
 {
     _context = context;
 }
Exemple #7
0
 public SeedDataService(BrewsyContext brewsyContext, UserManager <User> userManager, RoleManager <IdentityRole> roleManager)
 {
     _brewsyContext = brewsyContext;
     _userManager   = userManager;
     _roleManager   = roleManager;
 }