public async Task InsertPaymentTransactionEventLogAsync(IPaymentTransactionEventLog newEvent)
 {
     await _paymentTransactionEventsLogRepository.InsertAsync(newEvent);
 }
Пример #2
0
 public async Task InsertAsync(IPaymentTransactionEventLog newEvent)
 {
     var newEntity = Mapper.Map <PaymentTransactionEventLogEntity>(newEvent);
     await _tableStorage.InsertAndGenerateRowKeyAsDateTimeAsync(newEntity, newEntity.DateTime);
 }