Beispiel #1
0
        public async Task <IActionResult> CreateKeyword([FromBody] KeywordRequestDTO keyword)
        {
            var newKeyword = await _keywordService.CreateEntity(keyword);

            return(Created("/api/keyword/" + newKeyword.Entity.Id, newKeyword));
        }