public ApiAuthenticationController(IApiLoginService apiLoginService, ICookieHelperService helperService, IStringLocalizer <ApiResponcesShared> sharedLocalizer)
 {
     this.apiLoginService = apiLoginService;
     this.helperService   = helperService;
     this.sharedLocalizer = sharedLocalizer;
 }
示例#2
0
 public SecurityJwtMiddleware(RequestDelegate next, IApiLoginService apiLoginService)
 {
     this.next            = next;
     this.apiLoginService = apiLoginService;
 }