public ProfessorController(AppointmentSchedulerContext context, EmailService emailService)
 {
     _respository = new ProfessorRespository(context, emailService);
 }
示例#2
0
 public AuthenticationController(AppointmentSchedulerContext context, IConfiguration configuration, EmailService emailService)
 {
     _respository   = new ProfessorRespository(context, emailService);
     _configuration = configuration;
 }