// GET: api/planes
 public async Task <IActionResult> Get()
 {
     return(Ok(await planeService.GetEntitiesAsync()));
 }