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