public async Task DeleteAsync(int id)
        {
            await _flightService.DeleteByIdAsync(id);

            await UpdateListAsync();
        }