private void GetPaymentCashOut(long paymentNo, long paymentCashNo)
 {
     try
     {
         objPaymentCashOut = null;   // 初期化
         svcPaymentCloseClient svc = new svcPaymentCloseClient();
         svc.GetPaymentCashOutCompleted += new EventHandler<GetPaymentCashOutCompletedEventArgs>(this.GetPaymentCashOutCompleted);
         svc.GetPaymentCashOutAsync(Common.gstrSessionString, paymentNo, paymentCashNo);
     }
     catch (Exception ex)
     {
         this.ProcessingDlgClose();
         ExMessageBox.Show(CLASS_NM + ".GetPaymentCashOut" + Environment.NewLine + ex.ToString(), "エラー確認");
     }
 }
 private void GetPaymentList(string strWhereSql, string strOrderBySql)
 {
     try
     {
         objPaymentList = null;   // 初期化
         svcPaymentCloseClient svc = new svcPaymentCloseClient();
         svc.GetPaymentListCompleted += new EventHandler<GetPaymentListCompletedEventArgs>(this.GetPaymentListCompleted);
         svc.GetPaymentListAsync(Common.gstrSessionString, strWhereSql, strOrderBySql);
     }
     catch (Exception ex)
     {
         this.ProcessingDlgClose();
         ExMessageBox.Show(CLASS_NM + ".GetPaymentList" + Environment.NewLine + ex.ToString(), "エラー確認");
     }
 }
 private void UpdatePaymentPrint(int type, ObservableCollection<EntityPaymentClose> entity)
 {
     try
     {
         svcPaymentCloseClient svc = new svcPaymentCloseClient();
         svc.UpdatePaymentPrintAsync(Common.gstrSessionString, type, entity);
     }
     catch (Exception ex)
     {
         this.ProcessingDlgClose();
         ExMessageBox.Show(CLASS_NM + ".UpdatePaymentPrint" + Environment.NewLine + ex.ToString(), "エラー確認");
     }
 }
 private void GetPaymentTotal(EntityPaymentClosePrm entityPrm)
 {
     try
     {
         objClass = null;   // 初期化
         svcPaymentCloseClient svc = new svcPaymentCloseClient();
         svc.GetPaymentTotalCompleted += new EventHandler<GetPaymentTotalCompletedEventArgs>(this.GetPaymentTotalCompleted);
         svc.GetPaymentTotalAsync(Common.gstrSessionString, entityPrm);
     }
     catch (Exception ex)
     {
         this.ProcessingDlgClose();
         ExMessageBox.Show(CLASS_NM + ".GetPaymentTotal" + Environment.NewLine + ex.ToString(), "エラー確認");
     }
 }