/// <summary>
 /// SendEmailCommand
 /// </summary>
 /// <param name="emailAddress"></param>
 /// <param name="subject"></param>
 /// <param name="message"></param>
 public SendEmailCommand(NotificationQueue notificationQueue, string emailAddress, string subject, string message, AppointmentNotification appointmentNotification = null)
 {
     Notification            = notificationQueue;
     EmailAddress            = emailAddress;
     Subject                 = subject;
     Message                 = message;
     AppointmentNotification = appointmentNotification;
 }
Beispiel #2
0
 public void AppointmentNotificationReceived(AppointmentNotification notification, DateTime dateTime)
 {
 }