Exemplo n.º 1
0
 public async Task Save(PayAsYouGoAccount payAsYouGoAccount)
 {
     var streamName = StreamNameFor(payAsYouGoAccount.Id);
     await _eventStore.AppendEventsToStreamAsync(streamName,
                                                 payAsYouGoAccount.Changes);
 }
Exemplo n.º 2
0
 public async Task Add(PayAsYouGoAccount payAsYouGoAccount)
 {
     var streamName = StreamNameFor(payAsYouGoAccount.Id);
     await _eventStore.CreateNewStreamAsync(streamName, payAsYouGoAccount
                                            .Changes);
 }