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:

C# Create a Customer object using the concepts of OOP. The customer

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!