Exemple #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;
 }
 public TeachsController(ITeachesService teachsService)
 {
     this.teachsService = teachsService;
 }