コード例 #1
0
        public StudentEmploymentController()
        {
            var _unitOfWork = new UnitOfWork();

            _studentEmploymentService = new StudentEmploymentService(_unitOfWork);
            _profileService           = new ProfileService(_unitOfWork);
            _accountService           = new AccountService(_unitOfWork);
            _roleCheckingService      = new RoleCheckingService(_unitOfWork);
        }
コード例 #2
0
 public StudentEmploymentController(IStudentEmploymentService studentEmploymentService)
 {
     _studentEmploymentService = studentEmploymentService;
 }