コード例 #1
0
        public Task AddAsync(IHistoryOperation historyOperation)
        {
            if (historyOperation == null)
            {
                throw new ArgumentNullException(nameof(historyOperation));
            }

            return(_historyOperationRepository.InsertOrReplaceAsync(historyOperation));
        }
コード例 #2
0
        public Task InsertOrReplaceAsync(IHistoryOperation historyOperation)
        {
            var entity = new HistoryOperationEntity(historyOperation);

            var tasks = new List <Task>();

            tasks.Add(_storage.InsertOrReplaceAsync(entity));

            AzureIndex indexById = IndexById.Create(entity);

            tasks.Add(_indexById.InsertOrReplaceAsync(indexById));

            if (!string.IsNullOrEmpty(historyOperation.InvoiceId))
            {
                AzureIndex indexByInvoice = IndexByInvoice.Create(entity);
                tasks.Add(_indexByInvoice.InsertOrReplaceAsync(indexByInvoice));
            }

            return(Task.WhenAll(tasks));
        }