コード例 #1
0
        public IEnumerable <DataStructure.News> GetByCategory(IConnectionHandler connectionHandler, Guid categoryId, int?topCount)
        {
            var newsDa = new NewsDA(connectionHandler);

            return(newsDa.GetByCategory(categoryId, topCount));
        }