public async Task <object> GetArticles(int offset, int count)
        {
            var result = await _blogCategoryService.GetCategoriesAsync(offset, count);

            return(result.Entities);
        }