public CardHostController(IIntegrationRepository integrationRepository,
                           IPaymentSessionRepository paymentSessionRepository, IFileProvider fileProvider, IMemoryCache memoryCache)
 {
     this._integrationRepository    = integrationRepository;
     this._paymentSessionRepository = paymentSessionRepository;
     this._fileProvider             = fileProvider;
     this._memoryCache = memoryCache;
 }
Esempio n. 2
0
 public IntegrationController(IIntegrationRepository integrationRepository, IPaymentSessionRepository paymentSessionRepository)
 {
     this._integrationRepository    = integrationRepository;
     this._paymentSessionRepository = paymentSessionRepository;
 }