Beispiel #1
0
 public void AttachNotifier(INotifyReciever reciever)
 {
     this.observers.Add(reciever);
 }
Beispiel #2
0
 public MainController(IBookingScheduleService scheduleService, IAdminProxyDAO adminService, INotifyReciever reciever)
 {
     this.scheduleService = scheduleService;
     this.adminService    = adminService;
     this.AttachNotifier(reciever);
 }
Beispiel #3
0
 public static void AddNotifyReciever(INotifyReciever rec)
 {
     _notifyRecievers.Add(rec);
 }