Retrieving Customers
To fetch customer information:
var response = chargeOver.GetCustomers();
if (response.Success)
{
List<Customer> customers = response.Data;
foreach (var customer in customers)
{
Console.WriteLine(customer.CustomerName);
}
}