示例#1
0
 public ManagerPaymentController(IAccountServices AccountServices, IClaimsServices ClaimsServices,
                                 IPaymentServices PaymentServices, IWalletServices WalletServices)
 {
     this._AccountServices = AccountServices;
     this._claimsServices  = ClaimsServices;
     this._paymentServices = PaymentServices;
     this._walletServices  = WalletServices;
 }
示例#2
0
 public AccountController(IAccountServices accountService, IUserInfoServices userInfoServices,
                          IWalletServices walletServices, IConfigServices configServices, IClaimsServices claimsServices,
                          IUserRefServices userRefServices, ITargetServices targetServices, IIPlockServices IPlockServices)
 {
     _accountService   = accountService;
     _userInfoServices = userInfoServices;
     _walletServices   = walletServices;
     _configServices   = configServices;
     _claimsServices   = claimsServices;
     _userRefServices  = userRefServices;
     _targetServices   = targetServices;
     _IPlockServices   = IPlockServices;
 }
示例#3
0
 public WalletTransactionService(IWalletServices walletServices, weGOPAYDbContext weGOPAYDbContext)
 {
     _weGOPAYDbContext = weGOPAYDbContext;
 }
示例#4
0
 public WalletController(IWalletServices walletServices)
 {
     WalletRequest = walletServices;
 }
 public WalletHistoryController(IWalletServices walletServices)
 {
     _walletServices = walletServices;
 }
示例#6
0
 public WalletController(IWalletServices WalletServices)
 {
     _WalletService = WalletServices;
 }