Beispiel #1
0
 public DayAgenda(Agendas agendas, DateTime dateTime)
 {
     _agendas = agendas;
     _dateTime = dateTime;
     _agendas.PropertyChanged += NotifyPropertyChanged;
     _agendaList = _agendas.GetAgendaList(dateTime);
 }
Beispiel #2
0
 public DayAgenda(Agendas agendas, DateTime dateTime)
 {
     _agendas  = agendas;
     _dateTime = dateTime;
     _agendas.PropertyChanged += NotifyPropertyChanged;
     _agendaList = _agendas.GetAgendaList(dateTime);
 }
Beispiel #3
0
 protected void NotifyPropertyChanged(object sender, PropertyChangedEventArgs args)
 {
     _agendaList = _agendas.GetAgendaList(_dateTime);
 }