public ReviewRepository(IMapper mapper, IMySQLClient client) : base(mapper, client) { _mapper = mapper; }
public CompanyRepository(IMapper mapper, IMySQLClient client) : base(mapper, client) { _mapper = mapper; }
public OptionRepository(IMapper mapper, IMySQLClient client) : base(mapper, client) { _mapper = mapper; }
public MySQLBaseRepository(IMapper mapper, IMySQLClient client) { _mapper = mapper; _client = client; }
public VacancyRepository(IMapper mapper, IMySQLClient client) : base(mapper, client) { _mapper = mapper; }