Code:
public Customer GetCustomer(int index)
{
return (Customer)_customers[index];
}
Code:
private void UpdateCustomerList()
{
lstCustomer.Items.Clear();
for (int index = 0; index <= (_customerMngr.count-1); index++)