public WeatherHistoryDomain(IWeatherStationsData weatherStationsData, IPointData pointData, IIpmaDataRequisitions ipmaDataRequisitions, IEvaporationRepository evaporationRepository, IWeatherStationRepository weatherStationRepository, IReadHourlyRepository readHourlyRepository)
 {
     _weatherStationsData      = weatherStationsData;
     _pointData                = pointData;
     _ipmaDataRequisitions     = ipmaDataRequisitions;
     _evaporationRepository    = evaporationRepository;
     _WeatherStationRepository = weatherStationRepository;
     _readHourlyRepository     = readHourlyRepository;
 }
 public WeatherStationDomain(IWeatherStationsData weatherStationsData, IWeatherStationRepository weatherStationRepository, IReadStationInformation readStationInformation)
 {
     _weatherStationsData      = weatherStationsData;
     _weatherStationRepository = weatherStationRepository;
     _readStationInformation   = readStationInformation;
 }