Exemplo n.º 1
0
 public void SaveWeather(WeatherForecast weatherForecast, MeteoContext meteoContext)
 {
     try
     {
         meteoContext.WeatherForecasts.Add(weatherForecast);
         meteoContext.SaveChanges();
     }
     catch (DbEntityValidationException ex)
     {
         throw;
     }
 }