Exemplo n.º 1
0
 static void Main(string[] args)
 {
     Heater.Heater heater = new Heater.Heater();
     heater.boiled += (new Display().BoilDisplay);
     heater.BoilWater();
     Console.ReadKey();
 }
Exemplo n.º 2
0
 public Alarm(Heater h)
 {
     this.heater = h;
     h.boiled   += BoilAlarm;
 }