public HouseService(RedisTool RedisTool, HouseDapper houseDapper, ConfigService configService, NewHouseDapper newHouseDapper) { _redisTool = RedisTool; _houseDapper = houseDapper; _configService = configService; _newHouseDapper = newHouseDapper; }
public HouseService(RedisTool RedisTool, ConfigService configService, HouseDapper newHouseDapper, ElasticService elasticService) { _redisTool = RedisTool; _configService = configService; _newHouseDapper = newHouseDapper; _elasticService = elasticService; }
public HouseService(RedisTool RedisTool, ConfigService configService, HouseDapper houseDapper, ElasticService elasticService, HouseMongoMapper houseMongoMapper) { _redisTool = RedisTool; _configService = configService; _houseDapper = houseDapper; _elasticService = elasticService; _houseMongoMapper = houseMongoMapper; }