public List <CommentType> GetCommentTypeListByCategory(string category)
        {
            ICommentTypeBusinessEngine comment_type_be = _business_engine_factory.GetBusinessEngine <ICommentTypeBusinessEngine>();

            return(comment_type_be.GetTypesByCategory(category));
        }
        public List <CommentType> GetCommentTypeList()
        {
            ICommentTypeBusinessEngine comment_type_be = _business_engine_factory.GetBusinessEngine <ICommentTypeBusinessEngine>();

            return(comment_type_be.GetTypes());
        }