Exemple #1
0
 private void refresh()
 {
     ShowBusyIndicator("در حال دریافت اطلاعات...");
     userService.GetAllUserGroups(
         (res, exp) => appController.BeginInvokeOnDispatcher(() =>
     {
         HideBusyIndicator();
         if (exp == null)
         {
             UserGroups = res;
         }
         else
         {
             appController.HandleException(exp);
         }
     }));
 }