// 2. Need to create the method to send a customer from the outside list to the storefront. private void SendCustomerToStoreFront() { if (ListOfCustomersOutside.Count > 0) { NewCustomer newCustomer = ListOfCustomersOutside[0]; ListOfCustomersOutside.Remove(newCustomer); storeFront.AddCustomer(newCustomer); } }