Exemplo n.º 1
0
        public StudentEmploymentController()
        {
            var _unitOfWork = new UnitOfWork();

            _studentEmploymentService = new StudentEmploymentService(_unitOfWork);
            _profileService           = new ProfileService(_unitOfWork);
            _accountService           = new AccountService(_unitOfWork);
            _roleCheckingService      = new RoleCheckingService(_unitOfWork);
        }
Exemplo n.º 2
0
 public StudentEmploymentController(IStudentEmploymentService studentEmploymentService)
 {
     _studentEmploymentService = studentEmploymentService;
 }