예제 #1
0
 public Subject(Dictionary <Student.Student, SubjectSituation> signedUpStudentsGrades, SubjectInformation subjectInfo)
 {
     _signedUpStudentsGrades = signedUpStudentsGrades;
     SubjectInfo             = subjectInfo;
 }
예제 #2
0
 public Subject(SubjectInformation subjectInfo) : this()
 {
     SubjectInfo = subjectInfo;
 }
예제 #3
0
 public Subject(Guid getID, Dictionary <Student.Student, SubjectSituation> signedUpStudentsGrades, SubjectInformation subjectInfo)
 {
     GetID = getID;
     _signedUpStudentsGrades = signedUpStudentsGrades;
     SubjectInfo             = subjectInfo;
 }