コード例 #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
ファイル: WalletController.cs プロジェクト: chnaveen57/webapi
 public WalletController(IWalletServices walletServices)
 {
     WalletRequest = walletServices;
 }
コード例 #5
0
 public WalletHistoryController(IWalletServices walletServices)
 {
     _walletServices = walletServices;
 }
コード例 #6
0
ファイル: WalletController.cs プロジェクト: SebigDev/weGOPAY
 public WalletController(IWalletServices WalletServices)
 {
     _WalletService = WalletServices;
 }