Exemplo n.º 1
0
 public SecurityGuard(string name, IAlarmSystem subject)
 {
     this.name = name;
     subject.Subscribe(this);
 }
Exemplo n.º 2
0
 public WakeUpCallProcessor(IAlarmSystem alarmSystem)
 {
     _alarmSystem = alarmSystem;
 }
Exemplo n.º 3
0
 public void AlarmTriggered(IAlarmSystem sender, string message)
 {
     Console.WriteLine(name + ": " + message);
 }