Пример #1
0
 public ProductsController(BOOKSTOREContext context)
 {
     _context = context;
 }
 public ChartLinesController(BOOKSTOREContext context)
 {
     _context = context;
 }
 public PaymentsController(BOOKSTOREContext context)
 {
     _context = context;
 }
Пример #4
0
 public LoginController(BOOKSTOREContext context, UserManager <AppUser> userManager, SignInManager <AppUser> signInManager)
 {
     _context           = context;
     this.userManager   = userManager;
     this.signInManager = signInManager;
 }
 public CustomersController(BOOKSTOREContext context)
 {
     _context = context;
 }
 public WishListLinesController(BOOKSTOREContext context)
 {
     _context = context;
 }
 public OrderTablesController(BOOKSTOREContext context)
 {
     _context = context;
 }
Пример #8
0
 public BookStoreData(BOOKSTOREContext context)
 {
     _context = context;
 }