Beispiel #1
0
 public DummySkillRepository(DummyBotContext context) : base(context)
 {
     Collection = _context.Skills;
 }
 public DummyDepartmentRepository(DummyBotContext context) : base(context)
 {
     Collection = _context.Departments;
 }
 public DummyLanguageRepository(DummyBotContext context) : base(context)
 {
     Collection = _context.Languages;
 }
Beispiel #4
0
 public DummySocialNetworkRepository(DummyBotContext context) : base(context)
 {
     Collection = _context.SocialNetworks;
 }
Beispiel #5
0
 public DummyBaseEntityRepository(DummyBotContext context)
 {
     _context = context;
 }
Beispiel #6
0
 public DummyCandidateRepository(DummyBotContext context) : base(context)
 {
     Collection = _context.Candidates;
 }
Beispiel #7
0
 public DummyUserRepository(DummyBotContext context) : base(context)
 {
     //Collection = context.Users;
 }
Beispiel #8
0
 public DummyCityRepository(DummyBotContext context) : base(context)
 {
     Collection = _context.Locations;
 }
Beispiel #9
0
 public DummyVacancyRepository(DummyBotContext context) : base(context)
 {
     Collection = _context.Vacancies;
 }