DigitalCustomers.GetCustomers Method

Get all customers into a DataTable, ready to be displayed in a grid. 
Returns a data table containing the basic elements: 
index, idDcl, customerVatNumber, customerCountry, branch, vehicleRegistrationNumber, 
foreignVehicleRegistrationNumber, vehicleCategory, vehicleFactory
Public Function GetCustomers() As DataTable
This language is not supported or no code example is available.
public DataTable GetCustomers()
This language is not supported or no code example is available.

Return Value

DataTable
Example
 
 var dgc = new DigitalCustomers("AADEUserID", "OcpApimSubscriptionKey", "EntityVatNumber", "Arbitrans User", "Arbitrans Key", false);
 string[] searchParam = new[] { "100000000000100" };
 
 dgc.RequestCustomers(100000000000001L, 5, searchParam, true);
 
 DataTable dt = dgc.getCustomers();
 DataGridView1.DataSource = dt; // Load DataTable directly to a DataGridView
 					
This language is not supported or no code example is available.
 Dim dgc as DigitalCustomers = new DigitalCustomers("AADEUserID", "OcpApimSubscriptionKey", "EntityVatNumber", "Arbitrans User", "Arbitrans Key", False)
 Dim searchParam As String() = {"100000000000100"}
 
 dgc.RequestCustomers(100000000000001, 5, searchParam, True)
 
 Dim dt As DataTable = dgc.getCustomers()
 DataGridView1.DataSource = dt 'Load DataTable directly to a DataGridView
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition