Exemple #1
0
        static void Main(string[] args)
        {
            TemperatureWatcher tempwatch = new TemperatureWatcher();
            //tworzymy instancje klas dla Pracownika i Szefa
            Boss  boss  = new Boss(tempwatch);
            Admin admin = new Admin(tempwatch);

            tempwatch.OdpalTemperatureWatcher();

            Console.ReadKey();
        }
Exemple #2
0
 public Boss(TemperatureWatcher tempwatch)
 {
     this.tempwatch       = tempwatch;
     tempwatch.list_osob += Print;
 }