コード例 #1
0
 public SysUserAuthFilter(SysUserAuthentication sysUserAuthentication,
                          int platform,
                          bool ignore)
 {
     _sysUserAuthentication = sysUserAuthentication;
     _platform     = platform;
     _ignoreFilter = ignore;
 }
コード例 #2
0
 public ProfileController(SysUserService sysUserService,
                          SysUserLoginService sysUserLoginService,
                          SysUserAuthentication sysUserAuthentication)
 {
     _sysUserService        = sysUserService;
     _sysUserLoginService   = sysUserLoginService;
     _sysUserAuthentication = sysUserAuthentication;
 }
コード例 #3
0
 public WorkContext(SysUserAuthentication sysUserAuthentication,
                    SysRoleService sysRoleService,
                    IHttpContextAccessor httpContextAccessor,
                    SysCategoryService sysCategoryService,
                    SysUserService sysUserService)
 {
     _sysRoleService        = sysRoleService;
     _sysCategoryService    = sysCategoryService;
     _sysUserAuthentication = sysUserAuthentication;
     _httpContextAccessor   = httpContextAccessor;
     _sysUserService        = sysUserService;
 }
コード例 #4
0
 public LoginModel(SysUserService sysUserService,
                   SysUserAuthentication sysUserAuthentication)
 {
     _sysUserAuthentication = sysUserAuthentication;
     _sysUserService        = sysUserService;
 }
コード例 #5
0
ファイル: LoginController.cs プロジェクト: lovachen/FastCore
 public LoginController(SysUserService sysUserService,
                        SysUserAuthentication sysUserAuthentication)
 {
     _sysUserService        = sysUserService;
     _sysUserAuthentication = sysUserAuthentication;
 }