Create an application for a company to save and display customer information



Create an application for a company to save and display customer information. Begin with designing class named Person with the following properties:

 LastName (String)·

 FirstName (String)·

 Address (String)·

 City (String)·

 State (String)·

 Zip (String)·

 Phone (String)·

Then design a new class named Customer, which is derived from the Person class. The Customer class should have the following properties:

 CustomerNumber (integer)·

 MailingList (Boolean)·

 Comments (String)·

The CustomerNumber property will be used to hold a unique number for each customer. The MailingList property will be set to True if a customer wishes to be on a mailing list. The Comments property holds miscellaneous comments about the customer.

Create a form that allows you to assign values to each property of Customer object