Esempio n. 1
0
 public void AddEvent(MonitorEvent ev)
 {
     if (Day <= ev.Time && ev.Time < Day.AddDays(1))
     {
         _Events.AddSorted(ev);
         OnPropertyChanged("Events");
     }
 }
Esempio n. 2
0
 public string TypeIdentifier()
 {
     return(MonitorEvent.TypeForKey(key));
 }