Beispiel #1
0
 public StudentsService(IUnitOfWork db, IUsersService usersService, IParentsService parentsService, IFormsService formsService, StudentToStudentDTO toDTO, IEmailsService emailsService)
 {
     this.db             = db;
     this.usersService   = usersService;
     this.parentsService = parentsService;
     this.formsService   = formsService;
     this.toDTO          = toDTO;
     this.emailsService  = emailsService;
 }
Beispiel #2
0
 public StudentsController(IStudentsService studentsService, StudentToStudentDTO toDTO)
 {
     this.studentsService = studentsService;
     this.toDTO           = toDTO;
 }