public async Task ThenACreateResponseCodeIsReturnedOnSuccess()
        {
            var result = await _controller.CreateApprenticeship(TestAccountId, TestCommitmentId, 
                new Apprenticeship.ApprenticeshipRequest { Apprenticeship = new Apprenticeship.Apprenticeship() });

            result.Should().BeOfType<CreatedAtRouteNegotiatedContentResult<Apprenticeship.Apprenticeship>>();
        }