Example #1
0
 public ProductRepository(OshopContext context)
 {
     this._context = context;
 }
Example #2
0
 public UserRepository(OshopContext context)
 {
     this._context = context;
 }
Example #3
0
 public ShoppingCartRepository(OshopContext context)
 {
     this._context = context;
 }
Example #4
0
 public UnitOfWork(OshopContext context)
 {
     this._context = context;
 }
Example #5
0
 public CategoryRepository(OshopContext context)
 {
     this._context = context;
 }