Exemple #1
0
 public TransactionService(IUnitOfWork unitOfWork, IMapper mapp, IWithdrawService withdrawService, IDepositService depositService) : base(unitOfWork)
 {
     _unitOfWork      = unitOfWork;
     _mapp            = mapp;
     _depositService  = depositService;
     _withdrawService = withdrawService;
 }
 public IndexModel(UserManager <Customer> userManager
                   , IWithdrawService withdrawService)
 {
     _userManager     = userManager;
     _withdrawService = withdrawService;
     this.Input       = new WithdrawBindingModel();
 }
 internal RegularPersonalDetailsService(
     IDepositService depositService,
     IWithdrawService withdrawService,
     ISelfExclusionService selfExclusionService) : base(withdrawService)
 {
     this.depositService       = depositService;
     this.selfExclusionService = selfExclusionService;
 }
 public WithdrawModel(
     IWithdrawService withdrawService,
     ITransactionService transactionService,
     ICardService cardService)
 {
     _withdrawService    = withdrawService;
     _transactionService = transactionService;
     _cardService        = cardService;
 }
Exemple #5
0
 public AccountsController(
     IDepositService depositService,
     IWithdrawService withdrawService,
     ICloseService closeService,
     IAccountsQueries accountsQueries)
 {
     this.depositService  = depositService;
     this.withdrawService = withdrawService;
     this.closeService    = closeService;
     this.accountsQueries = accountsQueries;
 }
Exemple #6
0
 public AdminController(IOfferService offerService, IGameService gameService, IFilterService filterService, IDialogService dialogService, IFilterItemService filterItemService, IUserProfileService userProfileService, IWithdrawService withdrawService, IOrderService orderService)
 {
     _orderService       = orderService;
     _offerService       = offerService;
     _gameService        = gameService;
     _filterService      = filterService;
     _filterItemService  = filterItemService;
     _userProfileService = userProfileService;
     _dialogService      = dialogService;
     _withdrawService    = withdrawService;
 }
 public TransactionController(
     ITransactionService transactionService,
     IInsertService insertService,
     IWithdrawService withdrawService,
     ITransferService transferService,
     IAccountService accountService)
 {
     _TransactionService = transactionService;
     _InsertService      = insertService;
     _WithdrawService    = withdrawService;
     _TransferService    = transferService;
     _AccountService     = accountService;
 }
Exemple #8
0
 public CheckoutController(IUserProfileService userProfileService, IOrderService orderService,
                           IOfferService offerService, IAccountInfoService accountInfoService,
                           IOrderStatusService orderStatusService, IBillingService billingService,
                           ITransactionService transactionService, IIdentityMessageService identityMessageService, IWithdrawService withdrawService)
 {
     _orderStatusService     = orderStatusService;
     _userProfileService     = userProfileService;
     _orderService           = orderService;
     _offerService           = offerService;
     _accountInfoService     = accountInfoService;
     _billingService         = billingService;
     _transactionService     = transactionService;
     _identityMessageService = identityMessageService;
     _withdrawService        = withdrawService;
 }
Exemple #9
0
 public Bill99WithdrawInvocation(GatewayCommonRequest request)
 {
     _request                    = request;
     _withdrawService            = XDI.Resolve <IWithdrawService>();
     _allotAmountWithdrawService = XDI.Resolve <IAllotAmountWithdrawService>();
 }
Exemple #10
0
 public AccountsController(IWithdrawService withdrawService)
 {
     this.withdrawService = withdrawService;
 }
 protected PersonalDetailsService(IWithdrawService withdrawService)
 {
     this.withdrawService = withdrawService;
 }
 internal PolishPersonalDetailsService(
     IDepositService depositService,
     IWithdrawService withdrawService) : base(withdrawService)
 {
     this.depositService = depositService;
 }
Exemple #13
0
 public TransferService(IDepositService depositSvc, IWithdrawService withdrawService)
 {
     _depositSvc      = depositSvc;
     _withdrawService = withdrawService;
 }
 public TransferService(IInsertService insertService, IWithdrawService withdrawService, IAccountService accountService)
 {
     _insertService   = insertService;
     _withdrawService = withdrawService;
     _accountService  = accountService;
 }
 public IndexModel(IWithdrawService withdrawService)
 {
     this.withdrawService = withdrawService;
 }
 public WithDrawController(IWithdrawService withdrawSvc)
 {
     _withdrawSvc = withdrawSvc;
 }