コード例 #1
0
        public CategoryDTO FindCategoryDTOByName(string categoryName)
        {
            Category category = moderation.FindCategoryByName(categoryName);

            return(converterToDTO.ConvertToCategoryDTO(category));
        }