private void DoRefresh()
 {
     UnbindOrders();
     // refetch the orders collection from the persistent storage
     _currentCustomer.GetMultiOrders(true);
     BindOrders();
     // no changes yet, since the data just has been refreshed. Set save button to disabled.
     saveOrdersButton.Enabled = false;
 }