public AsyncController(IRightService _rightService, IDepService _depService, IRoleService _roleService, IUserBLL _userBLL, ICategoryService _cateService) { rightService = _rightService; depService = _depService; userBLL = _userBLL; roleService = _roleService; categoryService = _cateService; }
public SignInController(IUserService _userService, IRightService _rightService, IDepService _depService, IRoleService _roleService, IUserBLL _userBLL) { userService = _userService; rightService = _rightService; depService = _depService; roleService = _roleService; userBLL = _userBLL; }
public SysDepController(IDepService _depService) { depService = _depService; }
public SysUserController(IUserService _userService, IDepService _depService, IRoleBLL _roleBLL) { userService = _userService; depService = _depService; roleBll = _roleBLL; }