public AssessmentEvent(AssessmentType type, string location, SubjectDelivery subject, DateTime startDate, DateTime endDate)
     : this(type, location, subject)
 {
     TimePeriod = new TimePeriod(startDate, endDate);
 }
 public TimeTableItem(TimePeriod timePeriod, string location)
 {
     TimePeriod = timePeriod;
     Location = location;
 }
Example #3
0
 public AssessmentEvent(AssessmentType type, string location, SubjectDelivery subject, DateTime startDate, DateTime endDate)
     : this(type, location, subject)
 {
     TimePeriod = new TimePeriod(startDate, endDate);
 }