コード例 #1
0
 public PowerCheckRepository(IPrinteryContext db)
 {
     _db        = db;
     _dbContext = db.GetDbContext();
 }
コード例 #2
0
 public PaperRespository(IPrinteryContext db)
 {
     _db        = db;
     _dbContext = db.GetDbContext();
 }
コード例 #3
0
ファイル: EmpRepository.cs プロジェクト: 0yykk/PrinterySystem
 public EmpRepository(IPrinteryContext db)
 {
     _db        = db;
     _dbContext = db.GetDbContext();
 }
コード例 #4
0
 public CustomerRepository(IPrinteryContext db)
 {
     _db        = db;
     _dbContext = db.GetDbContext();
 }
コード例 #5
0
 public ProductRespository(IPrinteryContext db)
 {
     _db        = db;
     _dbContext = _db.GetDbContext();
 }