public async Task If_Apprenticeship_NotExists_Then_CreateRecord()
        {
            //Arrange
            var fixture = new ApprenticeshipCompletedEventTestsFixture().SetGetApprenticeshipService();

            //Act
            await fixture.Run();

            //Assert
            fixture.AssertRecordCreated();
        }
        public async Task Then_Update_Status()
        {
            //Arrange
            var fixture = new ApprenticeshipCompletedEventTestsFixture();

            //Act
            await fixture.Run();

            //Assert
            fixture.AssertStatus();
        }