예제 #1
0
        /// <summary>
        /// Function for Tax View By ProductId Applicable For Product
        /// </summary>
        /// <param name="dcProductId"></param>
        /// <returns></returns>
        public List <DataTable> TaxViewByProductIdApplicableForProduct(decimal dcProductId)
        {
            List <DataTable> ListObj = new List <DataTable>();

            try
            {
                ListObj = spTax.TaxViewByProductIdApplicableForProduct(dcProductId);
            }
            catch (Exception ex)
            {
                MessageBox.Show("TBLL13:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }

            return(ListObj);
        }