public WeatherForecastService(WeatherForecastStore store)
 {
     this.store = store;
 }
 public WeatherForecastController(ILogger <WeatherForecastController> logger, WeatherForecastStore store)
 {
     this.logger = logger;
     this.store  = store;
 }