Пример #1
0
 private void btnCustomsPass_Click(object sender, RoutedEventArgs e)
 {
     //通关成功;
     SOFacade.UpdateSOStatusToCustomsPass(SOSysNo, (result) =>
     {
         if (string.IsNullOrWhiteSpace(result))
         {
             LoadPage();
             Window.Alert("操作成功", MessageType.Information);
         }
         else
         {
             Window.Alert(ResSO.UC_Title_SoTextboxAlert, result, MessageType.Warning);
         }
     });
 }