예제 #1
0
        public long CountPostInCategory(string CategoryID)
        {
            _DBAccess = new DBController();

            long QtyPost = 0;

            _DBAccess.CountPostInCategory("VD_CHECK_POSTS_IN_CATEGORY", CategoryID, ref QtyPost);

            return(QtyPost);
        }