Exemplo n.º 1
0
 public Student(string university, string faculty, string hometown,
                bool isFullTime, string name, string surname, int age)
     : base(name, surname, age)
 {
     University          = university;
     Faculty             = faculty;
     Hometown            = hometown;
     IsFullTime          = isFullTime;
     AcademicPerformance = AcademicPerformance.Basic;
     Scholarship         = Scholarship.None;
     RecordBook          = new RecordBook();
 }
Exemplo n.º 2
0
 public Student(string university, string faculty, string hometown,
                bool isFullTime, string name, string surname, int age, uint semestersAmount)
     : base(name, surname, age)
 {
     University          = university;
     Faculty             = faculty;
     Hometown            = hometown;
     IsFullTime          = isFullTime;
     AcademicPerformance = AcademicPerformance.Basic;
     Scholarship         = Scholarship.Basic;
     SemestersAmount     = semestersAmount;
     RecordBook          = new RecordBook();
     AddSubjects();
     ExpelWithPartingWords += () => SetPartingWords();
     Notify += () => CreateADiploma.AddTextToDiploma(this);
 }