예제 #1
0
 public Studies(string name, string mode)
 {
     Nazwa = name;
     Tryb  = SetMode(mode);
     ActiveStudies.AddStudiesOrIncrementStudents(name);
 }
예제 #2
0
파일: Program.cs 프로젝트: s15682/cw2
 private static College CreateCollege(List <Student> studentList)
 {
     return(new College(studentList, ActiveStudies.GetActiveStudies()));
 }