Exemplo n.º 1
0
 public UnitOfWork(LeaveAppDbContext context)
 {
     _DbContext = context;
 }
Exemplo n.º 2
0
 public UserRepository(LeaveAppDbContext _db)
 {
     db = _db;
 }
Exemplo n.º 3
0
 public GenericRepository(LeaveAppDbContext context)
 {
     _Context = context;
     Table    = _Context.Set <TEntitity>();
 }
Exemplo n.º 4
0
 public UserLeaveRepostirory(LeaveAppDbContext context)
 {
     Context = context;
 }