Exemplo n.º 1
0
 public TimeSlot(int pos, DateTime start, DateTime end, LessonWeek week) : this()
 {
     Week     = week;
     Position = pos;
     Start    = start;
     End      = end;
 }
Exemplo n.º 2
0
 public TimeSlot(int pos, TimeSpan start, TimeSpan end, LessonWeek week) : this()
 {
     Week     = week;
     Position = pos;
     Start    = start;
     End      = end;
 }