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