public async Task FlightInsert(Flights flights)
        {
            try
            {
                await _Context.Flights.AddAsync(flights);

                await _Context.SaveChangesAsync();
            }
            catch (Exception ex)
            {
                throw;
            }
        }