示例#1
0
 public IActionResult Update([FromBody] Student s, int id)
 {
     if (classroom.update(id, s) == null)
     {
         return(NotFound());
     }
     return(Ok());
 }