public ShoppingCartController(IBookRepository bookRepository,
                               ShoppingCart shoppingCart, ebookDbContext context)
 {
     _bookRepository = bookRepository;
     _shoppingCart   = shoppingCart;
     _context        = context;
 }
Beispiel #2
0
 public BookRepository(ebookDbContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public HomeController(ebookDbContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public CategoryMenu(ebookDbContext context)
 {
     _context = context;
 }
Beispiel #5
0
 private ShoppingCart(ebookDbContext appDbContext)
 {
     _appDbContext = appDbContext;
 }
 public CategoryRepository(ebookDbContext context)
 {
     _context = context;
 }