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