Пример #1
0
 //Allowing user to remove customer records from list.
 public void RemoveCustomerRecord(Customers customers)
 {
     _customerList.Remove(customers);
 }
Пример #2
0
 //Allowing user to perform method to create a new customer record and add to our _customerList.
 public void CreateNewCustomerRecord(Customers customers)
 {
     _customerList.Add(customers);
 }