Exemplo n.º 1
0
 public PowerCheckRepository(IPrinteryContext db)
 {
     _db        = db;
     _dbContext = db.GetDbContext();
 }
Exemplo n.º 2
0
 public PaperRespository(IPrinteryContext db)
 {
     _db        = db;
     _dbContext = db.GetDbContext();
 }
Exemplo n.º 3
0
 public EmpRepository(IPrinteryContext db)
 {
     _db        = db;
     _dbContext = db.GetDbContext();
 }
Exemplo n.º 4
0
 public CustomerRepository(IPrinteryContext db)
 {
     _db        = db;
     _dbContext = db.GetDbContext();
 }
Exemplo n.º 5
0
 public ProductRespository(IPrinteryContext db)
 {
     _db        = db;
     _dbContext = _db.GetDbContext();
 }