/// <summary>
        /// This method is used to get all categories
        /// </summary>
        /// <returns></returns>
        public IEnumerable <ContentModel> GetCategoryContent(int CategoryID)
        {
            //  IList<ContentModel> result = new List<ContentModel>();
            ICategoryContentBL  catBL   = new CategoryContentBL();
            List <ContentModel> conList = catBL.GetCategoryContent(CategoryID);

            return(conList);
        }
        /// <summary>
        /// This method is used to get all the Purchase and Sales Categories
        /// </summary>
        /// <param name="psCatID"></param>
        /// <returns></returns>
        public string GetPSCategoryContentList(string tcCode)
        {
            ICategoryContentBL catBL = new CategoryContentBL();

            return(catBL.GetPSCategoryContentList(tcCode));
        }
        public string GetCurrencyFormat()
        {
            ICategoryContentBL catBL = new CategoryContentBL();

            return(catBL.GetNumberFormat());
        }