public InterviewController( IAdminInterviewService interviews, IAdminApplicantService applicants, IInterviewerTestsService tests, ApplicantsSystemDbContext dbContext, UserManager <User> userManager, IEmailSender emailSender) { this.interviews = interviews; this.applicants = applicants; this.tests = tests; this.userManager = userManager; this.emailSender = emailSender; }
public TestsController(IInterviewerTestsService tests) { this.tests = tests; }