public void AddForeCast(WeatherForecast forecast) => _service.Add(forecast);
public IActionResult CreateNew(WeatherForecast forecast) { _service.Add(forecast); return(RedirectToAction(nameof(Index))); }