public DepartmentRepositories(DbContext db) : base(db)
 {
     _superShopDbContext = (SuperShopDbContext)db;
 }
Beispiel #2
0
 public CustomerRepositories(DbContext db) : base(db)
 {
     _db = (SuperShopDbContext)db;
 }
 public EmployeeRepositories(DbContext db) : base(db)
 {
     _db = (SuperShopDbContext)db;
 }
 public ProductRepositories(DbContext db) : base(db)
 {
     _db = (SuperShopDbContext)db;
 }