so i have a class customer, the constructor customer has 5 parameters 
 class customer
    {
        public customer(string fname, string lname, string address,DateTime dob, int phone, string email  )
        { }
parameters email and phone can be blanks. is there a way to accomplished it without creating another constructor that only takes the necessary fields?
 
    