Question: C# Create a Customer object using the concepts of OOP. The customer object should have the following properties: customer ID first name last name address
C#
Create a Customer object using the concepts of OOP.
The customer object should have the following properties:
customer ID
first name
last name
address
city
state
zip
The customer object should have the following constructors:
public Customer()
public Customer(int id, string fn, string ln, string addr, string cy, string st, string zp)
The customer object should have the following method:
public void PrintBlock()
The method, PrintBlock() should generate output in the console that looks like:

Once you have the Customer object created in customer.cs, use program.cs to create 3 different customers and thin neatly print out their address blocks to the console
Thank you!!!
Customer ID: 11011 Name: Michael Schore Address: 100 Main St. City, State Zip: Raleigh, NC 27603
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
