public SubjectSituation(SubjectInformation subjectInformation, Attendance attendance, List <Grade> examGrades, Grade activityGrade)
 {
     SubjectInformation = subjectInformation;
     Attendance         = attendance;
     ExamGrades         = examGrades;
     ActivityGrade      = activityGrade;
 }
Пример #2
0
        public Subject.Subject CreateSubjects(SubjectInformation subjectInfo)
        {
            var subject = new Subject.Subject(subjectInfo);

            return(subject);
        }
Пример #3
0
 public Subject(SubjectInformation subjectInfo)
     : this()
 {
     SubjectInfo = subjectInfo;
 }
Пример #4
0
 public Subject(Dictionary <Common.Student, SubjectSituation> signedUpStudentsGrades, SubjectInformation subjectInfo)
 {
     _signedUpStudentsGrades = signedUpStudentsGrades;
     SubjectInfo             = subjectInfo;
 }
Пример #5
0
 public ForStudentCalculation(SubjectInformation subjectInfo)
     : this()
 {
     Contract.Requires(subjectInfo != null, "subjectInfo");
     SubjectInfo = subjectInfo;
 }
Пример #6
0
 public ForStudentCalculation(Dictionary <GenericEntities.Student, SubjectSituation> signedUpStudentsGrades, SubjectInformation subjectInfo)
 {
     _signedUpStudentsGrades = signedUpStudentsGrades;
     SubjectInfo             = subjectInfo;
 }