public GroupsPartialController(IMessageServices messageServices, IRoleServices roleServices,
     IUserServices userServices, SchoolServices schoolServices, GroupServices groupServices)
     :base(userServices, messageServices, roleServices)
 {
     this.schoolServices = schoolServices;
     this.groupServices = groupServices;
 }
Пример #2
0
 /// <summary>
 /// 构造函数
 /// </summary>
 /// <param name="sysUserInfoServices"></param>
 /// <param name="userRoleServices"></param>
 /// <param name="roleServices"></param>
 /// <param name="user"></param>
 public UserController(ISysUserInfoServices sysUserInfoServices, IUserRoleServices userRoleServices, IRoleServices roleServices, IUser user)
 {
     _sysUserInfoServices = sysUserInfoServices;
     _userRoleServices    = userRoleServices;
     _roleServices        = roleServices;
     _user = user;
 }
Пример #3
0
 public FullUserServisces(IUserServices userServices, IWorkerServices worekerServices, IRoleServices roleServices, IUserRoleServices userRoleServices)
 {
     _roleServices     = roleServices;
     _userServices     = userServices;
     _workerServices   = worekerServices;
     _userRoleServices = userRoleServices;
 }
Пример #4
0
 public IdentityController(IUserServices userServices, IRoleServices roleServices)
 {
     _userServices = userServices;
     _roleServices = roleServices;
 }
Пример #5
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="role"></param>
 public RoleController(IRoleServices role)
 {
     _role = role;
 }
Пример #6
0
 /// <summary>
 /// 构造函数
 /// </summary>
 /// <param name="sysUserInfoServices"></param>
 /// <param name="userRoleServices"></param>
 /// <param name="roleServices"></param>
 public LoginController(IsysUserInfoServices sysUserInfoServices, IUserRoleServices userRoleServices, IRoleServices roleServices)
 {
     this.sysUserInfoServices = sysUserInfoServices;
     this.userRoleServices    = userRoleServices;
     this.roleServices        = roleServices;
 }
 /// <summary>
 /// 
 /// </summary>
 /// <param name="users"></param>
 /// <param name="roles"></param>
 public UserServices(IRepository<User> users, IRoleServices roles)
 {
     this.roles = roles;
     this.users = users;
 }
 public UserController(IUserServices userServices, IRoleServices roleServices, IMessageServices messageServices, UsersFilter usersFilter)
     :base(userServices, messageServices, roleServices)
 {
     this.usersFilter = usersFilter;
 }
Пример #9
0
 public YetkiController(IRoleServices appRoleService, IMapper mapper)
 {
     _appRoleService = appRoleService;
     _mapper         = mapper;
 }
Пример #10
0
 public RoleController(IRoleServices roleServices, IMapper mapper)
 {
     _roleServices = roleServices;
     //_menuServices = menuServices;
     _mapper = mapper;
 }
Пример #11
0
 /// <summary>
 /// 构造函数
 /// </summary>
 /// <param name="unitOfWork"></param>
 /// <param name="sysUserInfoServices"></param>
 /// <param name="userRoleServices"></param>
 /// <param name="roleServices"></param>
 /// <param name="user"></param>
 /// <param name="logger"></param>
 public UserController(IUnitOfWork unitOfWork, ISysUserInfoServices sysUserInfoServices, IUserRoleServices userRoleServices, IRoleServices roleServices, IUser user, ILogger <UserController> logger)
 {
     _unitOfWork          = unitOfWork;
     _sysUserInfoServices = sysUserInfoServices;
     _userRoleServices    = userRoleServices;
     _roleServices        = roleServices;
     _user   = user;
     _logger = logger;
 }
Пример #12
0
 public RoleController(IRoleServices roleServices, IErrorServices errorServices)
 {
     this.roleServices  = roleServices;
     this.errorServices = errorServices;
 }
Пример #13
0
 public MenuController(IRoleServices roleServices, IMenuServices menuServices)
 {
     _roleServices = roleServices;
     _menuServices = menuServices;
 }
Пример #14
0
 public SetRoleMenusComponent(IMenuServices menuServices, IRoleServices roleServices)
 {
     _menuServices = menuServices;
     _roleServices = roleServices;
 }
Пример #15
0
 /// <summary>
 /// 设置
 /// </summary>
 /// <param name="roleServices"></param>
 /// <param name="redisCacheManager"></param>
 /// <param name="loggerHelper"></param>
 public SettingController(IRoleServices roleServices, IRedisCacheManager redisCacheManager, ILoggerHelper loggerHelper)
 {
     _roleServices      = roleServices;
     _redisCacheManager = redisCacheManager;
     _logger            = loggerHelper;
 }
Пример #16
0
 /// <summary>
 /// 构造函数
 /// </summary>
 /// <param name="sysUserInfoServices"></param>
 /// <param name="userRoleServices"></param>
 /// <param name="roleServices"></param>
 public UserRoleController(ISysUserInfoServices sysUserInfoServices, IUserRoleServices userRoleServices, IRoleServices roleServices)
 {
     this._sysUserInfoServices = sysUserInfoServices;
     this._userRoleServices    = userRoleServices;
     this._roleServices        = roleServices;
 }
 public UsersPartialController(IMessageServices messageServices, IRoleServices roleServices,
     IUserServices userServices)
     :base(userServices, messageServices, roleServices)
 {
 }
Пример #18
0
 public RoleController(IRoleServices roleServices, IUser user)
 {
     _roleServices = roleServices;
     _user         = user;
 }
 public BaseController(IUserServices userServices, IMessageServices messageServices, IRoleServices roleServices)
 {
     this.userServices = userServices;
     this.messageServices = messageServices;
     this.roleServices = roleServices;
 }
Пример #20
0
 /// <summary>
 /// 构造函数注入
 /// </summary>
 /// <param name="sysUserInfoServices"></param>
 /// <param name="userRoleServices"></param>
 /// <param name="roleServices"></param>
 /// <param name="requirement"></param>
 public LoginController(ISysUserInfoServices sysUserInfoServices, IUserRoleServices userRoleServices, IRoleServices roleServices, PermissionRequirement requirement)
 {
     this._sysUserInfoServices = sysUserInfoServices;
     this._userRoleServices    = userRoleServices;
     this._roleServices        = roleServices;
     _requirement = requirement;
 }
 public SchoolsPartialController(IMessageServices messageServices, IRoleServices roleServices,
     IUserServices userServices, SchoolServices schoolServices)
     :base(userServices, messageServices, roleServices)
 {
     this.schoolServices = schoolServices;
 }
Пример #22
0
 public UserController(IUserServices userServices, IRoleServices roleServices)
 {
     _userServices = userServices;
     _roleServices = roleServices;
 }