private void VerifyYourEmployeesNewThisPeriodHasBeenPersisted(string newThisPeriod)
 {
     ReportVerifier
     .VerifyReport(_reportRepository.GetReportWithId(_reportDto.Id))
     .YourEmployees
     .NewThisPeriodQuestion
     .HasAnswer(newThisPeriod);
 }
 private ReportDto GetCurrentReport()
 {
     return
         (_reportRepository
          .GetReportWithId(
              ScenarioContext
              .Current
              .Get <Guid>(
                  ContextKeys.CurrentReportID)));
 }