public void AddToExceptionOccurrences(ExceptionOccurrence exceptionOccurrence)
 {
     base.AddObject("ExceptionOccurrences", exceptionOccurrence);
 }
 public static ExceptionOccurrence CreateExceptionOccurrence(int exceptionID, int masterAppointmentID, global::System.DateTime exceptionDate)
 {
     ExceptionOccurrence exceptionOccurrence = new ExceptionOccurrence();
     exceptionOccurrence.ExceptionID = exceptionID;
     exceptionOccurrence.MasterAppointmentID = masterAppointmentID;
     exceptionOccurrence.ExceptionDate = exceptionDate;
     return exceptionOccurrence;
 }