public UnitOfWork(AsistPersonnelTrackingContext appDbContext)
 {
     _asistPersonnelTrackingContext = appDbContext;
 }
Exemple #2
0
 public Repository(AsistPersonnelTrackingContext context)
 {
     _context = context;
     _dbset   = _context.Set <TEntity>();
 }