Given a customer type code (key to the customer/member type), returns the associated CCustomerType object, or NULL if the customer type is not found

Namespace:  Asi.iBO.SystemConfig
Assembly:  Asi.iBO (in Asi.iBO.dll) Version: 15.1.2.0

Syntax

C#
public CCustomerType GetCustomerType(
	string customerTypeCode
)
Visual Basic (Declaration)
Public Function GetCustomerType ( _
	customerTypeCode As String _
) As CCustomerType
Visual C++
public:
CCustomerType^ GetCustomerType(
	String^ customerTypeCode
)

Parameters

customerTypeCode
Type: System..::.String
The key to the customer type to find/validate

Return Value

A CCustomerType object with details about the customer, or null if the customer type is not found/not valid.

See Also