コード例 #1
0
ファイル: HobbyController.cs プロジェクト: andreeafiterau/TSM
 [HttpDelete("{id}")]//ROUTE
 public IActionResult DeleteHobby(int id)
 {
     _hobbyService.Delete(id);
     return(Ok());
 }