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