public WorkRepository(GeoCabDbContext geoCabDbContext) : base(geoCabDbContext)
 {
 }
Exemple #2
0
 public ToolRepository(GeoCabDbContext geoCabDbContext) : base(geoCabDbContext)
 {
 }
Exemple #3
0
 public UserRepository(GeoCabDbContext geoCabDbContext) : base(geoCabDbContext)
 {
 }
 public EmployeeRepository(GeoCabDbContext geoCabDbContext) : base(geoCabDbContext)
 {
 }
 public BaseRepository(GeoCabDbContext dbContext)
 {
     _dbContext = dbContext;
     _dbSet     = _dbContext.Set <T>();
 }