Example #1
0
 public RoleController(ISysRoleService sysRoleService,
                       ISysCategoryService sysCategoryService,
                       ISysPermissionService sysPermissionService)
 {
     this._sysCategoryService   = sysCategoryService;
     this._sysRoleService       = sysRoleService;
     this._sysPermissionService = sysPermissionService;
 }
Example #2
0
 public CategoryController(ISysConfigService config, ICacheManager cache, ISysUserService user,
                           ISysChannelService channel, ISysCategoryService category)
 {
     _cacheManager       = cache;
     _sysuserSerice      = user;
     _syscategoryService = category;
     _sysconfigService   = config;
     _syschannelService  = channel;
 }
 public ArticleController(ISysConfigService config, ICacheManager cache, ISysUserService user,
                          ISysChannelService channel, ISysCategoryService category, ISysArticleService article)
 {
     _cacheManager       = cache;
     _sysuserSerice      = user;
     _syscategoryService = category;
     _sysconfigService   = config;
     _syschannelService  = channel;
     _sysarticleService  = article;
 }
Example #4
0
 public AdminAuthService(IHttpContextAccessor httpContextAccessor,
                         ISysUserService sysUserService,
                         ISysCategoryService sysCategoryService,
                         ISysPermissionService sysPermissionServices,
                         ISysUserRoleService sysUserRoleService)
 {
     this._sysPermissionServices = sysPermissionServices;
     this._sysUserRoleService    = sysUserRoleService;
     this._sysCategoryService    = sysCategoryService;
     this._httpContextAccessor   = httpContextAccessor;
     this._sysUserService        = sysUserService;
 }
Example #5
0
 public RegisterApplicationService(ISysCategoryService sysCategoryService)
 {
     this._sysCategoryService = sysCategoryService;
 }