Example #1
0
 public ProfessorsController(Models.MosaicContext context, IProfAuthentication service, IEmailAuthentication emailService)
 {
     _context      = context;
     _service      = service;
     _emailService = emailService;
 }
Example #2
0
 public EmailsController(MosaicContext context, IEmailAuthentication service)
 {
     _context = context;
     _service = service;
 }
Example #3
0
 public StudentsController(Models.MosaicContext context, IStudentAuthentication service, IEmailAuthentication emailService)
 {
     _context      = context;
     _service      = service;
     _emailService = emailService;
 }