Customer Constructor (customerId, company, city, country)

Design Pattern Framework 3.5

Design Pattern Framework 3.5 Customer Constructor (customerId, company, city, country)
Patterns-In-Action! ApplicationBusinessObjectsCustomerCustomer(Int32, String, String, String)
Overloaded constructor for the Customer class.
Declaration Syntax
C# Visual Basic
public Customer(
	int customerId,
	string company,
	string city,
	string country
)
Public Sub New ( _
	customerId As Integer, _
	company As String, _
	city As String, _
	country As String _
)
Parameters
customerId (Int32)
Unique Identifier for the Customer.
company (String)
Name of the Customer.
city (String)
City where Customer is located.
country (String)
Country where Customer is located.

Assembly: BusinessObjects (Module: BusinessObjects) Version: 1.0.0.0 (1.0.0.0)