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