Ejemplo n.º 1
0
 //WEATHER
 public override void AddWeather(WeatherByDay weather)
 {
     _context.WeatherByDay.Add(weather);
 }
Ejemplo n.º 2
0
        public override void DeleteWeather(int id)
        {
            WeatherByDay weather = _context.WeatherByDay.Find(id);

            _context.WeatherByDay.Remove(weather);
        }
Ejemplo n.º 3
0
 public abstract void AddWeather(WeatherByDay weather);