コード例 #1
0
        /// <summary>
        /// This method is used to get all taxes
        /// </summary>
        /// <returns></returns>
        public IEnumerable <TaxModel> GetAllTaxes()
        {
            ITaxCodesAndRatesBL taxCRBL  = new TaxCodesAndRatesBL();
            List <TaxModel>     taxModel = taxCRBL.GetAllTaxes();

            return(taxModel);
        }
コード例 #2
0
        public string IsTaxDeleted(int Id)
        {
            ITaxCodesAndRatesBL taxCRBL = new TaxCodesAndRatesBL();

            return(taxCRBL.IsTaxDeleted(Id));
        }