public VianetBillPaymentController(IVianetBillPaymentBusiness vianet, IWalletUserBusiness payment, IMobileTopUpPaymentBusiness mtp, ITransactionLimitBusiness transactionLimit)
 {
     _vianet           = vianet;
     _payment          = payment;
     _mtp              = mtp;
     _transactionLimit = transactionLimit;
 }
Ejemplo n.º 2
0
        // GET: Client/NwscBillPayment

        public NwscBillPaymentController(INwscBillPaymentBusiness nwsc, ICommonBusiness ICB, IMobileTopUpPaymentBusiness mtp, IWalletUserBusiness payment)
        {
            _nwsc    = nwsc;
            _ICB     = ICB;
            _mtp     = mtp;
            _payment = payment;
        }
Ejemplo n.º 3
0
 public ClientUserController(IUserBusiness user, IWalletUserBusiness walletUser, IKycBusiness kyc, IClientManagementBusiness clientManagement)
 {
     _userBusiness       = user;
     _walletUserBusiness = walletUser;
     _kyc = kyc;
     _CLientManagement = clientManagement;
 }
Ejemplo n.º 4
0
 public WorldLinkBillPaymentController(IWorldLinkBillPaymentBusiness wlink, IWalletUserBusiness payment, IMobileTopUpPaymentBusiness mtp, ITransactionLimitBusiness transactionLimit)
 {
     _wlink            = wlink;
     _payment          = payment;
     _mtp              = mtp;
     _transactionLimit = transactionLimit;
 }
Ejemplo n.º 5
0
 //IMobilePaymentBusiness _mpaymentPP;
 public LandLineBillPaymentController(MobileTopUpPaymentBusiness mtp)
 {
     _LLpay            = new LandLinePaymentBusiness();
     _transactionLimit = new TransactionLimitBusiness();
     _payment          = new WalletUserBusiness();
     _mtp = mtp;
     _ICB = new CommonBusiness();
 }
 public NeaBillPaymentController(INeaBillPaymentBusiness nea, IMobileTopUpPaymentBusiness mtp, ITransactionLimitBusiness transactionLimit, IWalletUserBusiness payment, ICommonBusiness ICB)
 {
     _nea = nea;
     _mtp = mtp;
     _transactionLimit = transactionLimit;
     _payment          = payment;
     _ICB = ICB;
 }
Ejemplo n.º 7
0
 public PaymentController(IWalletUserBusiness payment, IMobileTopUpPaymentBusiness mtp, IMobilePaymentBusiness mpaymentPP, ITransactionLimitBusiness tbuss, ICardBusiness card)
 {
     _payment          = payment;
     _mtp              = mtp;
     _mpaymentPP       = mpaymentPP;
     _transactionLimit = tbuss;
     _card             = card;
 }
Ejemplo n.º 8
0
 public CardController(ICardBusiness cardBusiness, IWalletUserBusiness walletUser)
 {
     _card = cardBusiness;
     _walletUserBusiness = walletUser;
 }
Ejemplo n.º 9
0
 public LoadBalanceController(IWalletUserBusiness walletUser)
 {
     _walletUser = walletUser;
     _iLoad      = new LoadBalanceBusiness();
 }
Ejemplo n.º 10
0
 public HomeController(IServicesManagementBusiness services, IWalletUserBusiness walletUserBusiness)
 {
     _services   = services;
     _walletUser = walletUserBusiness;
 }
 public WalletBalanceController(IWalletUserBusiness walletUser)
 {
     _walletUser = walletUser;
 }