Example #1
0
 public UnitOfWork()
 {
     context = new ERPContext();
 }
Example #2
0
 public UnitOfWork(ERPContext _context)
 {
     this.context = _context;
 }
Example #3
0
 public EmployeeRepository(ERPContext context)
 {
     this.context = context;
 }