Ejemplo n.º 1
0
 public ErrorController()
 {
     _log = new LogHandler();
 }
Ejemplo n.º 2
0
 public GenericRepository(DbContext dbContext)
 {
     _log       = new LogHandler();
     _dbContext = dbContext;
     _dbSet     = dbContext.Set <TEntity>();
 }