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