void client_GetSatisfactionAppChildCompleted(object sender, GetSatisfactionAppChildCompletedEventArgs e)
        {
            RefreshUI(RefreshedTypes.HideProgressBar);
            if (e.Error != null)
            {
                ComfirmWindow.ConfirmationBoxs(Utility.GetResourceStr("ERROR"), Utility.GetResourceStr("GETDATAFAILED"), Utility.GetResourceStr("CONFIRM"), MessageIcon.Error);
                return;
            }
            if (e.Result == null)
            {
                ComfirmWindow.ConfirmationBoxs(Utility.GetResourceStr("TIPS"), Utility.GetResourceStr("NOTFOUNDDATAOFMATCHCON"), Utility.GetResourceStr("CONFIRM"), MessageIcon.Information);
                return;
            }


            BindingCheckBox();

            DataGridConverter();
            RefreshUI(RefreshedTypes.All);
            RefreshUI(RefreshedTypes.AuditInfo);
        }
 void client_GetSatisfactionAppChildCompleted(object sender, GetSatisfactionAppChildCompletedEventArgs e)
 {
     RefreshUI(RefreshedTypes.HideProgressBar);
     if (e.Error != null)
     {
         ComfirmWindow.ConfirmationBoxs(Utility.GetResourceStr("ERROR"), Utility.GetResourceStr("GETDATAFAILED"), Utility.GetResourceStr("CONFIRM"), MessageIcon.Error);
         return;
     } 
     if (e.Result == null)
     {
         ComfirmWindow.ConfirmationBoxs(Utility.GetResourceStr("TIPS"), Utility.GetResourceStr("NOTFOUNDDATAOFMATCHCON"), Utility.GetResourceStr("CONFIRM"), MessageIcon.Information);
         return;
     }
     
     
      BindingCheckBox();
     
      DataGridConverter();
      RefreshUI(RefreshedTypes.All);
      RefreshUI(RefreshedTypes.AuditInfo);
    }