public ActionResult Delete(int flightId)
 {
     _flightRepository.DeleteFlight(flightId);
     return(Ok());
 }