public void Reset()
 {
     _key           = 0;
     _dispatcherObj = null;
     _status        = EntryStatus.IDLE;
     _priority      = EntryPriority.NORMAL;
 }
 public Entry()
 {
     days = new int[7];
     alertHours = new List<DateTime>();
     priority = EntryPriority.ImportantUrgent;
 }