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