コード例 #1
0
ファイル: TermController.cs プロジェクト: TheLamed/Ontology
 public async Task <ActionResult <bool> > AddThemeToTerm(long termId, long themeId)
 {
     return(Ok(await _termService.AddThemeToTerm(termId, themeId)));
 }