public RegisterModel(UserManager <ApplicationUser> userManager, SignInManager <ApplicationUser> signInManager, ECommDbContext context, IEmailSender emailSender)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _context       = context;
     _emailSender   = emailSender;
 }
示例#2
0
 public InventoryManager(ECommDbContext context)
 {
     _context = context;
 }
示例#3
0
 public BasketManager(ECommDbContext context)
 {
     _context = context;
 }