private static void ResgisterPatient() { Console.WriteLine("### Insert the name of the patient ###"); string name = Console.ReadLine(); clinic.ResgisterPatient(new Patient(name, new DateTime(1995, 5, 3))); Console.WriteLine("Patient registered!"); }