public Student(string name, ISchool schoolEnrolledIn) { this.Name = name; Validator.CheckIfNull <ISchool>(schoolEnrolledIn); this.ID = schoolEnrolledIn.GetUniqueStudentID(); }
public Student(string name, ISchool schoolEnrolledIn) { this.Name = name; Validator.CheckIfNull<ISchool>(schoolEnrolledIn); this.ID = schoolEnrolledIn.GetUniqueStudentID(); }