示例#1
0
 public Junior(Student student) : base(student)
 {
     this.schedule         = student.getSchedule();
     this.name             = student.getName();
     this.gender           = student.gender;
     this.school           = student.school;
     this.DOB              = student.getDOB();
     this.completedCredits = student.getCredits();
     this.major            = student.getMajor();
 }
示例#2
0
 public Minor(Area_of_Study areaofstudy) : base(areaofstudy)
 {
 }
示例#3
0
 public Cert(Area_of_Study areaofstudy) : base(areaofstudy)
 {
 }
示例#4
0
 public MajorDecorater(Area_of_Study areaofstudy)
 {
     this.major = areaofstudy;
 }