public void AddCustomer(CustomerViewModel customerViewModel)
 {
     _customers.Add(customerViewModel);
 }
 public void AddParentCustomer(CustomerViewModel parentCustomer)
 {
     _parentCustomers.Add(parentCustomer);
 }