コード例 #1
0
 private void UpdateInOutDelivery(int type, long InOutDeliveryNo, EntityInOutDeliveryH entityH, ObservableCollection<EntityInOutDeliveryD> entityD, EntityInOutDeliveryH before_entityH, ObservableCollection<EntityInOutDeliveryD> before_entityD)
 {
     try
     {
         svcInOutDeliveryClient svc = new svcInOutDeliveryClient();
         svc.UpdateInOutDeliveryCompleted += new EventHandler<UpdateInOutDeliveryCompletedEventArgs>(this.UpdateInOutDeliveryCompleted);
         svc.UpdateInOutDeliveryAsync(Common.gstrSessionString, type, InOutDeliveryNo, entityH, entityD, before_entityH, before_entityD);
     }
     catch (Exception ex)
     {
         this.ProcessingDlgClose();
         ExMessageBox.Show(CLASS_NM + ".UpdateInOutDelivery" + Environment.NewLine + ex.ToString(), "エラー確認");
     }
 }
コード例 #2
0
 private void GetInOutDeliveryListD(long InOutDeliveryNo)
 {
     try
     {
         objInOutDeliveryListD = null;   // 初期化
         svcInOutDeliveryClient svc = new svcInOutDeliveryClient();
         svc.GetInOutDeliveryListDCompleted += new EventHandler<GetInOutDeliveryListDCompletedEventArgs>(this.GetInOutDeliveryListDCompleted);
         svc.GetInOutDeliveryListDAsync(Common.gstrSessionString, InOutDeliveryNo, InOutDeliveryNo);
     }
     catch (Exception ex)
     {
         this.ProcessingDlgClose();
         ExMessageBox.Show(CLASS_NM + ".GetInOutDeliveryListD" + Environment.NewLine + ex.ToString(), "エラー確認");
     }
 }