Beispiel #1
0
 /// <summary>
 /// Sends the user email notifications.
 /// </summary>
 /// <param name="dateToConsider">The date to consider.</param>
 private void SendBookingNotifications()
 {
     BookingNotificationHandler.SendNotifications();
 }
Beispiel #2
0
 /// <summary>
 /// Sends the booking overdue and delayed emails.
 /// </summary>
 /// <param name="dateToConsider">The date to consider.</param>
 private void SendBookingOverdueAndDelayedEmails(DateTime dateToConsider)
 {
     BookingNotificationHandler.SendBookingOverdueEmails(dateToConsider);
     BookingNotificationHandler.SendBookingDelayedEmails(dateToConsider);
 }