Beispiel #1
0
 public PowerCheckRepository(IPrinteryContext db)
 {
     _db        = db;
     _dbContext = db.GetDbContext();
 }
 public PaperRespository(IPrinteryContext db)
 {
     _db        = db;
     _dbContext = db.GetDbContext();
 }
Beispiel #3
0
 public EmpRepository(IPrinteryContext db)
 {
     _db        = db;
     _dbContext = db.GetDbContext();
 }
 public CustomerRepository(IPrinteryContext db)
 {
     _db        = db;
     _dbContext = db.GetDbContext();
 }
 public ProductRespository(IPrinteryContext db)
 {
     _db        = db;
     _dbContext = _db.GetDbContext();
 }