/// <summary> /// Function to get tax id for tax selection based on parameter /// </summary> /// <param name="decVoucherTypeId"></param> /// <returns></returns> public List <DataTable> GetTaxIdForTaxSelection(decimal decVoucherTypeId) { List <DataTable> listObj = new List <DataTable>(); try { listObj = spVoucherType.GetTaxIdForTaxSelection(decVoucherTypeId); } catch (Exception ex) { MessageBox.Show("VT22:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information); } return(listObj); }