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