public void ContraVoucherDelete(decimal ContraDetailsId, decimal decVoucherTypeId, string strVoucherNo)
        {
            try
            {
                ContraDetailsSP spContraDetails = new ContraDetailsSP();
                spContraDetails.ContraVoucherDelete(ContraDetailsId, decVoucherTypeId, strVoucherNo);
            }

            catch (Exception ex)
            {
                MessageBox.Show("CVBLL:5" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }