Exemplo n.º 1
0
        /// <summary>
        /// Function for view TaxId Corresponding To Cess TaxId
        /// </summary>
        /// <param name="decTaxId"></param>
        /// <returns></returns>
        public List <DataTable> TaxIdCorrespondingToCessTaxId(decimal decTaxId)
        {
            List <DataTable> Listobj = new List <DataTable>();

            try
            {
                Listobj = spTax.TaxIdCorrespondingToCessTaxId(decTaxId);
            }
            catch (Exception ex)
            {
                MessageBox.Show("TBLL9:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }

            return(Listobj);
        }