static void Main(string[] args)
 {
     Person hurencho = new Person("Huren Chkr",null);
     Console.WriteLine(hurencho);
 }
 static void Main(string[] args)
 {
     Person testPerson = new Person();
     Console.WriteLine(testPerson);
 }