示例#1
0
 public UserService(ITokenService tokenService, IUserSessionService userSessionService, IMapper mapper, UserOperations ops, StudentDAO studDao, ProfessorDAO profDao, AssistentDAO assisDao)
 {
     _tokenService       = tokenService;
     _userSessionService = userSessionService;
     _mapper             = mapper;
     _userops            = ops;
     _studentDao         = studDao;
     _assistentDao       = assisDao;
     _professorDao       = profDao;
 }
示例#2
0
 public AssistentService(AssistentDAO assistentDao, IMapper mapper, IUserService userService)
 {
     _assistentDao = assistentDao;
     _mapper       = mapper;
     _userService  = userService;
 }