Пример #1
0
 public ReviewRepository(IMapper mapper, IMySQLClient client) : base(mapper, client)
 {
     _mapper = mapper;
 }
Пример #2
0
 public CompanyRepository(IMapper mapper, IMySQLClient client) : base(mapper, client)
 {
     _mapper = mapper;
 }
Пример #3
0
 public OptionRepository(IMapper mapper, IMySQLClient client) : base(mapper, client)
 {
     _mapper = mapper;
 }
Пример #4
0
 public MySQLBaseRepository(IMapper mapper, IMySQLClient client)
 {
     _mapper = mapper;
     _client = client;
 }
Пример #5
0
 public VacancyRepository(IMapper mapper, IMySQLClient client) : base(mapper, client)
 {
     _mapper = mapper;
 }