コード例 #1
0
ファイル: AuthorController.cs プロジェクト: ragib007/blogAPI
 public void Post([FromBody] Author author)
 {
     _authorManager.CreateAuthor(author);
 }
コード例 #2
0
 public ActionResult Create(string name, string password)
 {
     authorManager.CreateAuthor(name, password);
     return(Ok());
 }