Exemplo n.º 1
0
        public InternalBusiness(IAgentConnectIntegration agentConnectIntegration, IOpenIdmIntegration openIdmIntegration)
        {
            agentConnectIntegration.ThrowIfNull(nameof(agentConnectIntegration));
            agentConnectIntegration.ThrowIfNull(nameof(openIdmIntegration));

            this.agentConnectIntegration = agentConnectIntegration;
            this.openIdmIntegration      = openIdmIntegration;
        }
Exemplo n.º 2
0
        public ConsumerBusiness(ILookupBusiness lookupBusiness, IAgentConnectIntegration agentConnectIntegration)
        {
            agentConnectIntegration.ThrowIfNull(nameof(agentConnectIntegration));
            lookupBusiness.ThrowIfNull(nameof(lookupBusiness));

            _agentConnectIntegration = agentConnectIntegration;
            _lookupBusiness          = lookupBusiness;
        }
Exemplo n.º 3
0
        public CommonBusiness(IAgentConnectIntegration agentConnectIntegration, IReceiptIntegration receiptIntegration)
        {
            agentConnectIntegration.ThrowIfNull(nameof(agentConnectIntegration));
            receiptIntegration.ThrowIfNull(nameof(receiptIntegration));

            this.agentConnectIntegration = agentConnectIntegration;
            this.receiptIntegration      = receiptIntegration;
        }
Exemplo n.º 4
0
        public LookupBusiness(IAgentConnectIntegration agentConnectIntegration, IProfileBusiness profileBusiness)
        {
            agentConnectIntegration.ThrowIfNull(nameof(agentConnectIntegration));
            profileBusiness.ThrowIfNull(nameof(profileBusiness));

            _agentConnectIntegration = agentConnectIntegration;
            _profileBusiness         = profileBusiness;
        }
Exemplo n.º 5
0
        public ReceiveReversalBusiness(IAgentConnectIntegration agentConnectIntegration, ILookupBusiness lookupBusiness)
        {
            agentConnectIntegration.ThrowIfNull(nameof(agentConnectIntegration));
            lookupBusiness.ThrowIfNull(nameof(lookupBusiness));

            _agentConnectIntegration = agentConnectIntegration;
            _lookupBusiness          = lookupBusiness;
        }
        public SendReversalBusiness(IAgentConnectIntegration agentConnectIntegration, IReceiptIntegration receiptIntegration, ILookupBusiness lookupBusiness)
        {
            agentConnectIntegration.ThrowIfNull(nameof(agentConnectIntegration));
            receiptIntegration.ThrowIfNull(nameof(receiptIntegration));
            receiptIntegration.ThrowIfNull(nameof(lookupBusiness));

            _agentConnectIntegration = agentConnectIntegration;
            _receiptIntegration      = receiptIntegration;
            _lookupBusiness          = lookupBusiness;
        }
Exemplo n.º 7
0
        public BillPayBusiness(IAgentConnectIntegration agentConnectIntegration, IReceiptIntegration receiptIntegration, ILookupBusiness lookupBusiness)
        {
            agentConnectIntegration.ThrowIfNull(nameof(agentConnectIntegration));
            receiptIntegration.ThrowIfNull(nameof(receiptIntegration));
            lookupBusiness.ThrowIfNull(nameof(lookupBusiness));

            this.agentConnectIntegration = agentConnectIntegration;
            this.receiptIntegration      = receiptIntegration;
            this.lookupBusiness          = lookupBusiness;
        }
Exemplo n.º 8
0
        public MoneyOrderBusiness(IAgentConnectIntegration agentConnectIntegration)
        {
            agentConnectIntegration.ThrowIfNull(nameof(agentConnectIntegration));

            this.agentConnectIntegration = agentConnectIntegration;
        }
Exemplo n.º 9
0
        public DocumentBusiness(IAgentConnectIntegration agentConnectIntegration)
        {
            agentConnectIntegration.ThrowIfNull(nameof(agentConnectIntegration));

            this.agentConnectIntegration = agentConnectIntegration;
        }
Exemplo n.º 10
0
        public ProfileBusiness(IAgentConnectIntegration agentConnectIntegration)
        {
            agentConnectIntegration.ThrowIfNull(nameof(agentConnectIntegration));

            _agentConnectIntegration = agentConnectIntegration;
        }