Esempio n. 1
0
        public async Task <ActionResult> PostFlight([FromBody] NewFlightModel model)
        {
            var flightId = await _flightService.AddFlightAsync(model);

            return(Ok(flightId));
        }