public async Task DeletePilot()
        {
            //act
            await pilotService.DeletePilot(pilot.Id);

            PilotDTO result = await pilotService.GetPilot(pilot.Id);

            //assert
            Assert.IsNull(result);
        }