示例#1
0
 public ParentsService(IUnitOfWork db, ParentToParentDTO toDTO, IUsersService usersService, IEmailsService emailsService)
 {
     this.db            = db;
     this.toDTO         = toDTO;
     this.usersService  = usersService;
     this.emailsService = emailsService;
 }
示例#2
0
 public ParentsController(IParentsService parentsService, ParentToParentDTO toDTO)
 {
     this.parentsService = parentsService;
     this.toDTO          = toDTO;
 }