Beispiel #1
0
 public ForgotPasswordActionHandler(IIdentityServiceWrapper identityServiceWrapper, IConfiguration configuration, ISessionStorageService sessionStorageService, ILocalStorageService localStorageService, SweetAlertService sweetAlertService, NavigationManager navigationManager, EndPointsModel endPoints, IHttpClient httpClient, HttpClient baseHttpClient, IJSRuntime jsRuntime, IMediator mediator, IStore store) : base(configuration, sessionStorageService, localStorageService, sweetAlertService, navigationManager, endPoints, httpClient, baseHttpClient, jsRuntime, mediator, store)
 {
     IdentityServiceWrapper = identityServiceWrapper;
     Configuration          = configuration;
     SessionStorageService  = sessionStorageService;
     LocalStorageService    = localStorageService;
     SweetAlertService      = sweetAlertService;
     NavigationManager      = navigationManager;
     EndPoints      = endPoints;
     HttpClient     = httpClient;
     BaseHttpClient = baseHttpClient;
     JsRuntime      = jsRuntime;
     Mediator       = mediator;
     Store          = store;
 }
Beispiel #2
0
 public AuthenticateIdentityHandler(IIdentityServiceWrapper identityServiceWrapper)
 {
     IdentityServiceWrapper = identityServiceWrapper;
 }
Beispiel #3
0
 public RolesController(IMediator mediator, IIdentityServiceWrapper identityServiceWrapper)
 {
     _mediator = mediator;
     _identityServiceWrapper = identityServiceWrapper;
 }
Beispiel #4
0
 public CredentialController(IMediator mediator, IIdentityServiceWrapper identityServiceWrapper)
 {
     _identityServiceWrapper = identityServiceWrapper;
     _mediator = mediator;
 }
Beispiel #5
0
 public CreateIdentityHandler(IIdentityServiceWrapper identityServiceWrapper, IWalletServiceWrapper walletServiceWrapper)
 {
     WalletServiceWrapper   = walletServiceWrapper;
     IdentityServiceWrapper = identityServiceWrapper;
 }
Beispiel #6
0
 public ContactsController(IIdentityServiceWrapper identityServiceWrapper)
 {
     _identityServiceWrapper = identityServiceWrapper;
 }
Beispiel #7
0
 public GetIdentityHandler(IIdentityServiceWrapper identityServiceWrapper)
 {
     IdentityServiceWrapper = identityServiceWrapper;
 }