コード例 #1
0
ファイル: GraphsController.cs プロジェクト: AndekQR/Graphs
 public IHttpActionResult DeleteGraph(int id)
 {
     try {
         _graphService.DeleteGraph(id);
         return(Ok());
     } catch (KeyNotFoundException) {
         return(NotFound());
     }
 }
コード例 #2
0
ファイル: GraphController.cs プロジェクト: ivancea/win
 public void DeleteGraph(int id)
 {
     graphService.DeleteGraph(id);
 }