コード例 #1
0
 public ActionResult <Keep> EditCounts([FromBody] Keep newKeep, int id)
 {
     try
     {
         newKeep.Id = id;
         return(Ok(_ks.EditCounts(newKeep)));
     }
     catch (Exception e)
     {
         return(BadRequest(e.Message));
     }
 }