public void InitializeTests()
 {
     this.dbContext  = MockDbContext.GetContext();
     this.interviews = new AdminInterviewService(dbContext, MockAutoMapper.GetAutoMapper());
     this.applicants = new AdminApplicantService(dbContext, MockAutoMapper.GetAutoMapper());
     this.tests      = new InterviewerTestsService(dbContext, MockAutoMapper.GetAutoMapper());
 }
 public void InitializeTests()
 {
     this.dbContext = MockDbContext.GetContext();
     this.service   = new AdminInterviewService(dbContext, MockAutoMapper.GetAutoMapper());
 }