//Allowing user to remove customer records from list. public void RemoveCustomerRecord(Customers customers) { _customerList.Remove(customers); }
//Allowing user to perform method to create a new customer record and add to our _customerList. public void CreateNewCustomerRecord(Customers customers) { _customerList.Add(customers); }