示例#1
0
文件: Mark.cs 项目: shakuu/Exams
 public Mark(SchoolSubjectType subject, float value)
 {
     this.SchoolSubjectType = subject;
     this.Value             = value;
 }
示例#2
0
文件: Teacher.cs 项目: shakuu/Exams
 public Teacher(string firstName, string lastName, SchoolSubjectType subject)
     : base(firstName, lastName)
 {
     this.subject = subject;
 }