Пример #1
0
        public List <KeywordContract> GetKeywordList([FromQuery] int?start, [FromQuery] int?count)
        {
            var result = m_catalogValueManager.GetKeywordList(start, count);

            SetTotalCountHeader(result.TotalCount);

            return(result.List);
        }