private void CancelData(bool isCancel) { try { string msg; if (isCancel) { msg = MessageCode.CFM0003; } else { msg = MessageCode.CFM0004; } if (rMessageBox.ShowConfirmation(this, msg) == DialogResult.Yes) { vmRpt.CancelWorkPlaceAir(wpaResult, isCancel); if (isCancel) { rMessageBox.ShowInfomation(this, MessageCode.INF0004); } else { rMessageBox.ShowInfomation(this, MessageCode.INF0005); } this.IsDataChange = true; wpaResult = vmRpt.GetWorkPlaceAir(wpaResult.ID); RetriveData(); } } catch (Exception ex) { rMessageBox.ShowException(this, ex); } }