public void ChangeEnrollment(Enrollment enrollment) { type = ChooseType(enrollment); }
public Student(string name, string course, Enrollment enrollment) { this.name = name; this.course = course; type = ChooseType(enrollment); }