public async Task Put(int id, [FromBody] TypePlaneDTO value)
 {
     await typePlaneService.Update(id, value);
 }
 public void Put(int id, [FromBody] TypePlaneDTO value)
 {
     typePlaneService.Update(id, value);
 }
 public async Task Post([FromBody] TypePlaneDTO value)
 {
     await typePlaneService.Create(value);
 }
 public void Post([FromBody] TypePlaneDTO value)
 {
     typePlaneService.Create(value);
 }