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