Ejemplo n.º 1
0
 public WalletAppService(IRepository <User, long> userRepo, TransactionsAppService transAppService, IPodClient podClient, IRefreshableAction action)
 {
     this.userRepo        = userRepo;
     this.transAppService = transAppService;
     this.podClient       = podClient;
     this.action          = action;
 }
 public AccessTokenManagerBase(IRepository <ExternalToken> externalTokenRepo,
                               IAbpSession session, IPodClient podClient)
 {
     this.externalTokenRepo = externalTokenRepo;
     this.session           = session;
     this.podClient         = podClient;
 }
Ejemplo n.º 3
0
 public WithdrawController(IPodClient podClient,
                           IOptions <PodConfig> podOptions,
                           IDatabaseLayer databaseLayer,
                           ISessionUtilities session)
 {
     _podClient     = podClient;
     _podOptions    = podOptions;
     _databaseLayer = databaseLayer;
     _session       = session;
 }
 public PodAuthenticationController(
     IAccessTokenManager accessTokenManager,
     TokenAuthConfiguration tokenAuthConfiguration,
     AbpLoginResultTypeHelper abpLoginResultTypeHelper,
     LogInManager logInManager,
     IRepository <ExternalToken> externalTokensRepo,
     UserManager userManager,
     IRepository <User, long> userRepo,
     IRepository <StaticUser> staticUserRepo,
     IPodClient service,
     IJwtCreator jwtCreator)
 {
     this.accessTokenManager       = accessTokenManager;
     this.tokenAuthConfiguration   = tokenAuthConfiguration;
     this.abpLoginResultTypeHelper = abpLoginResultTypeHelper;
     this.logInManager             = logInManager;
     this.externalTokensRepo       = externalTokensRepo;
     this.userManager    = userManager;
     this.userRepo       = userRepo;
     this.staticUserRepo = staticUserRepo;
     _service            = service;
     _jwtCreator         = jwtCreator;
 }