Beispiel #1
0
 public Mark(SchoolSubjectType subject, float value)
 {
     this.SchoolSubjectType = subject;
     this.Value             = value;
 }
Beispiel #2
0
 public Teacher(string firstName, string lastName, SchoolSubjectType subject)
     : base(firstName, lastName)
 {
     this.subject = subject;
 }