示例#1
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="date">A specific school day that occurs within the school year.</param>
 ///<param name="calendarSummaryRefId">The ID (GUID) of the calendar summary in which this calendar date is.</param>
 ///<param name="schoolInfoRefId">The ID (GUID) of the school for which this calendar information is being reported.</param>
 ///<param name="schoolYear">A SchoolYear</param>
 ///<param name="calendarDateType">A CalendarDateType</param>
 ///
 public CalendarDate( DateTime? date, string calendarSummaryRefId, string schoolInfoRefId, int? schoolYear, CalendarDateType calendarDateType )
     : base(Adk.SifVersion, StudentDTD.CALENDARDATE)
 {
     this.Date = date;
     this.CalendarSummaryRefId = calendarSummaryRefId;
     this.SchoolInfoRefId = schoolInfoRefId;
     this.SchoolYear = schoolYear;
     this.CalendarDateType = calendarDateType;
 }
示例#2
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="date">A specific school day that occurs within the school year.</param>
 ///<param name="calendarSummaryRefId">The ID (GUID) of the calendar summary in which this calendar date is.</param>
 ///<param name="schoolInfoRefId">The ID (GUID) of the school for which this calendar information is being reported.</param>
 ///<param name="schoolYear">A SchoolYear</param>
 ///<param name="calendarDateType">A CalendarDateType</param>
 ///
 public CalendarDate(DateTime?date, string calendarSummaryRefId, string schoolInfoRefId, int?schoolYear, CalendarDateType calendarDateType) : base(Adk.SifVersion, StudentDTD.CALENDARDATE)
 {
     this.Date = date;
     this.CalendarSummaryRefId = calendarSummaryRefId;
     this.SchoolInfoRefId      = schoolInfoRefId;
     this.SchoolYear           = schoolYear;
     this.CalendarDateType     = calendarDateType;
 }