예제 #1
0
        public UserController(IUser_Service userService, IRole_Service role_Service,
                              IEducationLevel_Service educationLevel_Service)
        {
            _userService = userService;

            _roleService = role_Service;

            _educationLevelService = educationLevel_Service;
        }
예제 #2
0
 public RoleController(IRole_Service role_Service, IMapper mapper)
 {
     this.role_Service = role_Service;
     this.mapper       = mapper;
 }