'Declaration
Public Function GetCustomer( _ ByVal customerID As Guid, _ Optional ByVal loadArchived As Boolean _ ) As Customer
'Usage
Dim instance As DataAccess Dim customerID As Guid Dim loadArchived As Boolean Dim value As Customer value = instance.GetCustomer(customerID, loadArchived)
public Customer GetCustomer( Guid customerID, bool loadArchived )
public: Customer^ GetCustomer( Guid customerID, bool loadArchived )
Parameters
- customerID
- The unique identifier of the Customer as a Guid.
- loadArchived
- Determines if deleted records are allowed to be returned in the result.
Return Value
A comprehensive Customer object.