Esempio n. 1
0
        static void Main(string[] args)
        {
            WeatherData             weatherData    = new WeatherData();
            CurrentConditionDisplay currentDisplay = new CurrentConditionDisplay(weatherData);

            weatherData.SetMeasurement(20, 30, 40);

            Console.ReadKey();
        }