示例#1
0
 public ScheduleKey(Month m, Week w, int c)
 {
     month  = m;
     week   = w;
     course = c;
 }
示例#2
0
 public Week(int start, int end, Month month)
 {
     this.start = start;
     this.end   = end;
     this.month = month;
 }