コード例 #1
0
 private void GetPaymentCashList(string strWhereSql, string strOrderBySql)
 {
     try
     {
         objPaymentCashList = null;   // 初期化
         svcPaymentCashClient svc = new svcPaymentCashClient();
         svc.GetPaymentCashListCompleted += new EventHandler<GetPaymentCashListCompletedEventArgs>(this.GetPaymentCashListCompleted);
         svc.GetPaymentCashListAsync(Common.gstrSessionString, strWhereSql, strOrderBySql);
     }
     catch (Exception ex)
     {
         this.ProcessingDlgClose();
         ExMessageBox.Show(CLASS_NM + ".GetPaymentCashList" + Environment.NewLine + ex.ToString(), "エラー確認");
     }
 }