Create an object-oriented program that allows you to enter data for customers and employees.
Your output should resemble the following:
Customer/Employee Data Entry
Customer or employee? (c/e): c
DATA ENTRY
First name: Frank
Last name: Wilson
Email: frank44@gmail.com
Number: M10293
CUSTOMER
Customer Name: Frank Wilson
Email: frank44@gmail.com
Number: M10293
Continue? (y/n): y
Customer or employee? (c/e): e
DATA ENTRY
First name: John
Last name: Barnes
Email: jbarnes@yahoo.com
SSN: 123-45-6789
EMPLOYEE
Employee Name: John Barnes
Email: jbarnes@yahoo.com
SSN: 123-45-6789
Continue? (y/n): n
Bye!
NOTE: Your input should not be hard-coded. Your program should allow any employee or customer information to be entered!