コード例 #1
0
 public async Task Put(int id, [FromBody] TypePlaneDTO value)
 {
     await typePlaneService.Update(id, value);
 }
コード例 #2
0
 public void Put(int id, [FromBody] TypePlaneDTO value)
 {
     typePlaneService.Update(id, value);
 }
コード例 #3
0
 public async Task Post([FromBody] TypePlaneDTO value)
 {
     await typePlaneService.Create(value);
 }
コード例 #4
0
 public void Post([FromBody] TypePlaneDTO value)
 {
     typePlaneService.Create(value);
 }