void FindCustomerByIDAndProcess(string customerID, Action <Customers> action)
 {
     try {
         context.Load <Customers>(context.GetCustomerByIDQuery(customerID), FindCustomerByIDCallback, action);
     } catch (Exception ex) {
         HandleException(ex);
     }
 }