public WeatherForecast Post(WeatherForecast weather)
 {
     return(weather);
 }
 public ActionResult Post([FromBody] WeatherForecast forecast)
 {
     return(Ok("Success!"));
 }
 public IActionResult post(WeatherForecast weatherForecast)
 {
     return(Ok());
 }