DigitalCustomers.GetCustomers Method
Returns a data table containing the basic elements:
index, idDcl, customerVatNumber, customerCountry, branch, vehicleRegistrationNumber,
foreignVehicleRegistrationNumber, vehicleCategory, vehicleFactory
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.