Exemplo n.º 1
0
        public void Post([FromBody] CityWeatherStation value)
        {
            CityWeatherStation station = value;

            DataProvider.AddCityWeatherStation(station.cityID, station.zipCode, station.country);
            return;
        }