Exemplo n.º 1
0
 public TeachersToSubjectsService(IUnitOfWork db, ITeachersService teachersService, ISubjectsService subjectsService, TeacherSubjectToDTO toDTO)
 {
     this.db = db;
     this.teachersService = teachersService;
     this.subjectsService = subjectsService;
     this.toDTO           = toDTO;
 }
Exemplo n.º 2
0
 public TeachersToSubjectsController(ITeachersToSubjectsService teachersToSubjectsService, ITeachersService teachersService, TeacherSubjectToDTO toDTO)
 {
     this.teachersToSubjectsService = teachersToSubjectsService;
     this.teachersService           = teachersService;
     this.toDTO = toDTO;
 }