Ejemplo n.º 1
0
 public ExpensivePaymentGateway(IRestIntegration rest, IOptions <ExternalSettings> app, IPaymentProfile profile, IBaseRepo baseRepo)
 {
     _restIntegration = rest;
     appSettings      = app;
     _baseRepo        = baseRepo;
     _paymentProfile  = profile;
 }
        public PremiumPaymentService(IRestIntegration rest, IOptions <ExternalSettings> app, IPaymentProfile profile, IBaseRepo baseRepo)
        {
            _baseRepo        = baseRepo;
            _restIntegration = rest;
            appSettings      = app;

            _paymentProfile = profile;
        }