public static Student ChooseEnter(ConsoleKey key) { Student person = null; // Protect it. switch (key) { case ConsoleKey.D1: person = GetCustomStudent(); break; case ConsoleKey.D2: person = BL.GetRandomStudent(); break; default: break; } return(person); }
public static void PrintShortName(Student person) { Console.Write("Short name: {0}\n", BL.GetShortName(person)); }
public static void PrintYear(Student person) { Console.Write("Year: {0}\n", BL.GetYear(person)); }