Exemple #1
0
 public EmployeeRepository(ICrossTechDbContext crossTechDbContext) : base(crossTechDbContext.Employees)
 {
 }
 public PositionRepository(ICrossTechDbContext crossTechDbContext) : base(crossTechDbContext.Positions)
 {
 }
Exemple #3
0
 public UserRepository(ICrossTechDbContext crossTechDbContext) : base(crossTechDbContext.Users)
 {
     _crossTechDbContext = crossTechDbContext;
 }