private void UpdateEstimatePrint(int type, string _no)
 {
     try
     {
         svcEstimateClient svc = new svcEstimateClient();
         svc.UpdateEstimatePrintAsync(Common.gstrSessionString, type, _no);
     }
     catch (Exception ex)
     {
         this.ProcessingDlgClose();
         ExMessageBox.Show(CLASS_NM + ".UpdateEstimatePrint" + Environment.NewLine + ex.ToString(), "エラー確認");
     }
 }
 private void GetEstimateListD(long EstimateNo)
 {
     try
     {
         objEstimateListD = null;   // 初期化
         svcEstimateClient svc = new svcEstimateClient();
         svc.GetEstimateListDCompleted += new EventHandler<GetEstimateListDCompletedEventArgs>(this.GetEstimateListDCompleted);
         svc.GetEstimateListDAsync(Common.gstrSessionString, EstimateNo, EstimateNo);
     }
     catch (Exception ex)
     {
         this.ProcessingDlgClose();
         ExMessageBox.Show(CLASS_NM + ".GetEstimateListD" + Environment.NewLine + ex.ToString(), "エラー確認");
     }
 }
 private void UpdateEstimate(int type, long EstimateNo, EntityEstimateH entityH, ObservableCollection<EntityEstimateD> entityD)
 {
     try
     {
         svcEstimateClient svc = new svcEstimateClient();
         svc.UpdateEstimateCompleted += new EventHandler<UpdateEstimateCompletedEventArgs>(this.UpdateEstimateCompleted);
         svc.UpdateEstimateAsync(Common.gstrSessionString, type, EstimateNo, entityH, entityD);
     }
     catch (Exception ex)
     {
         this.ProcessingDlgClose();
         ExMessageBox.Show(CLASS_NM + ".UpdateEstimate" + Environment.NewLine + ex.ToString(), "エラー確認");
     }
 }
 private void GetEstimateList(string strWhereSql, string strOrderBySql)
 {
     try
     {
         objEstimateList = null;   // 初期化
         svcEstimateClient svc = new svcEstimateClient();
         svc.GetEstimateListCompleted += new EventHandler<GetEstimateListCompletedEventArgs>(this.GetEstimateListCompleted);
         svc.GetEstimateListAsync(Common.gstrSessionString, strWhereSql, strOrderBySql);
     }
     catch (Exception ex)
     {
         this.ProcessingDlgClose();
         ExMessageBox.Show(CLASS_NM + ".GetEstimateList" + Environment.NewLine + ex.ToString(), "エラー確認");
     }
 }