public CategoryRepository(GoodsStoreDbContext context)
 {
     this._context = context;
 }
Exemplo n.º 2
0
 public SizeRepository(GoodsStoreDbContext context)
 {
     this._context = context;
 }
Exemplo n.º 3
0
 public ReviewRepository(GoodsStoreDbContext context)
 {
     this._context = context;
 }
 public OrderRepository(GoodsStoreDbContext db)
 {
     this._context = db;
 }
 public ClothesTypeRepository(GoodsStoreDbContext db)
 {
     this._context = db;
 }