Exemplo n.º 1
0
 public MarksService(IUnitOfWork db, ITeachesService teachsService, IStudentsService studentsService, ISubjectsService subjectsService, IEmailService emailService)
 {
     this.db              = db;
     this.teachsService   = teachsService;
     this.studentsService = studentsService;
     this.subjectsService = subjectsService;
     this.emailService    = emailService;
 }
Exemplo n.º 2
0
 public TeachsController(ITeachesService teachsService)
 {
     this.teachsService = teachsService;
 }