public BaseRepository(ShopOnlineContext context)
 {
     _context = context;
 }
Beispiel #2
0
 public ShippingRepository(ShopOnlineContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public UserDao()
 {
     db = new ShopOnlineContext();
 }
Beispiel #4
0
 public ProductDao()
 {
     db = new ShopOnlineContext();
 }
Beispiel #5
0
 public ContactDao()
 {
     db = new ShopOnlineContext();
 }
 public ProductRepository(ShopOnlineContext context)
 {
     _context = context;
 }
Beispiel #7
0
 public ProductsController(ShopOnlineContext context)
 {
     _context = context;
 }
Beispiel #8
0
 public BillsController(ShopOnlineContext context)
 {
     _context = context;
 }
Beispiel #9
0
 public OrderRepository(ShopOnlineContext context)
 {
     _context = context;
 }
Beispiel #10
0
 public ProductCategoryDao()
 {
     db = new ShopOnlineContext();
 }
 public CustomersController(ShopOnlineContext context)
 {
     _context = context;
 }
 public UnitOfWork(ShopOnlineContext context)
 {
     _context = context;
 }
Beispiel #13
0
 public ProductRepository(ShopOnlineContext context) : base(context)
 {
 }