Example #1
0
 public void SetProfessor(Professor.Professor professor)
 {
     Professor = professor;
 }
Example #2
0
 public void DefineSubject(PlainText subjectName, Credits credits, EvaluationType type, Proportion activity, Professor.Professor professor)
 {
     _definedSubjects.Add(new Subject.Subject(new SubjectInformation(subjectName, credits, type, activity, professor)));
 }
Example #3
0
 public SubjectInformation(PlainText name, Credits credits, EvaluationType type, Proportion activity, Professor.Professor professor)
     : this(name, credits, type, activity)
 {
     Professor = professor;
 }
Example #4
0
        public void DefineSubject(Guid Id, PlainText subjectName, Credits credits, EvaluationType type, Proportion activity, Professor.Professor professor)
        {
            var subjects = FindById(Id);

            subjects.DefineSubject(subjectName, credits, type, activity, professor);
        }