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(); }
public Boss(TemperatureWatcher tempwatch) { this.tempwatch = tempwatch; tempwatch.list_osob += Print; }