Esempio n. 1
0
 public LoginController(ISysUserService sysUserService,
                        ILoginAuthService authenticationService,
                        IMemoryCache memoryCache)
 {
     this._memoryCache           = memoryCache;
     this._sysUserService        = sysUserService;
     this._authenticationService = authenticationService;
 }
Esempio n. 2
0
 public MainController(ILoginAuthService adminAuthService)
 {
     this._adminAuthService = adminAuthService;
 }