public PaymentRepository(IPaymentDataStore paymentDataStore,
                          IAddressDataStore addressDataStore,
                          ICardInformationDataStore cardInformationDataStore,
                          ICardMaskingService cardMaskingService,
                          IHashService hashService)
 {
     _hashService              = hashService;
     _cardMaskingService       = cardMaskingService;
     _cardInformationDataStore = cardInformationDataStore;
     _addressDataStore         = addressDataStore;
     _paymentDataStore         = paymentDataStore;
 }
Пример #2
0
 public CardRepository(ICardInformationDataStore cardInformationDataStore)
 {
     _cardInformationDataStore = cardInformationDataStore;
 }