예제 #1
0
        /// <summary>
        /// Function for Tax View All By VoucherTypeId With Cess
        /// </summary>
        /// <param name="decVoucherTypeId"></param>
        /// <returns></returns>
        public List <DataTable> TaxViewAllByVoucherTypeIdWithCess(decimal decVoucherTypeId)
        {
            List <DataTable> ListObj = new List <DataTable>();

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

            return(ListObj);
        }