public void ReceiptVoucherDelete(decimal decReceiptMasterId, decimal decVoucherTypeId, string strVoucherNo) { try { spReceiptMaster.ReceiptVoucherDelete(decReceiptMasterId, decVoucherTypeId, strVoucherNo); } catch (Exception) { throw; } }
public void ReceiptVoucherDelete(decimal decReceiptMasterId, decimal decVoucherTypeId, string strVoucherNo) { try { ReceiptMasterSP spReceiptMaster = new ReceiptMasterSP(); spReceiptMaster.ReceiptVoucherDelete(decReceiptMasterId, decVoucherTypeId, strVoucherNo); } catch (Exception ex) { MessageBox.Show("RD5:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information); } }