示例#1
0
 /// <summary>
 /// Raises AppointmentStartTimeReached event.
 /// </summary>
 /// <param name="appointmentEventArgs">Event arguments</param>
 protected virtual void OnAppointmentStartTimeReached(AppointmentEventArgs appointmentEventArgs)
 {
     AppointmentEventHandler handler = AppointmentStartTimeReached;
     if (handler != null)
         handler(this, appointmentEventArgs);
 }
示例#2
0
 /// <summary>
 /// Raises the AppointmentRemoved event.
 /// </summary>
 /// <param name="appointmentEventArgs">Event arguments</param>
 protected virtual void OnAppointmentRemoved(AppointmentEventArgs appointmentEventArgs)
 {
     AppointmentEventHandler handler = AppointmentRemoved;
     if (handler != null) handler(this, appointmentEventArgs);
 }