public SellController(BrewsyContext brewsyContext) { _brewsyContext = brewsyContext; }
public BeersController(BrewsyContext context) { _context = context; }
public ChargeController(IChargeService chargeService, BrewsyContext context) { _chargeService = chargeService; _context = context; }
public PurchasesController(BrewsyContext context) { _context = context; }
public ChargeService(BrewsyContext brewsyContext) { _brewsyContext = brewsyContext; }
public HomeController(BrewsyContext context) { _context = context; }
public SeedDataService(BrewsyContext brewsyContext, UserManager <User> userManager, RoleManager <IdentityRole> roleManager) { _brewsyContext = brewsyContext; _userManager = userManager; _roleManager = roleManager; }