コード例 #1
0
 public CardHostController(IIntegrationRepository integrationRepository,
                           IPaymentSessionRepository paymentSessionRepository, IFileProvider fileProvider, IMemoryCache memoryCache)
 {
     this._integrationRepository    = integrationRepository;
     this._paymentSessionRepository = paymentSessionRepository;
     this._fileProvider             = fileProvider;
     this._memoryCache = memoryCache;
 }
コード例 #2
0
 public IntegrationController(IIntegrationRepository integrationRepository, IPaymentSessionRepository paymentSessionRepository)
 {
     this._integrationRepository    = integrationRepository;
     this._paymentSessionRepository = paymentSessionRepository;
 }