public IEnumerable <WeatherForecast> Post([FromBody] WeatherForecast weatherForecast)
 {
     return(_weatherForecastRepository.Create(weatherForecast));
 }