예제 #1
0
 public UserrolesController(EPIMSContext context)
 {
     _context = context;
 }
 public WorkDetailsController(EPIMSContext context)
 {
     _context = context;
 }
예제 #3
0
 public UnitOfWork(EPIMSContext context)
 {
     _context  = context;
     _objectId = Guid.NewGuid();
 }
예제 #4
0
 public LoginController(EPIMSContext context)
 {
     _context = context;
 }
예제 #5
0
 public GenericRepository(EPIMSContext context)
 {
     _DbContext  = context;
     this._DbSet = this._DbContext.Set <T>();
 }