public static void Main()
Customer c1=new Customer();
Customer c2=new Customer("John","Abraham");
Customer c3=new Customer(5);
Customer c4=new Customer(34.56F);
public Customer():this("no fn provided", "no ln provided")
public Customer(string fn, string ln)
public void PrintFullName()
Console.WriteLine("Full Name: "+this.firstName+" "+this.lastName);