public static void Main() { SchoolStudent schoolStudent = new SchoolStudent(); CollegeStudent collegeStudent = new CollegeStudent(); schoolStudent.TemplateMethod(); collegeStudent.TemplateMethod(); Console.ReadKey(); }