Exemplo n.º 1
0
 private async Task ReplaceDuplicateKey(IAsyncDao tDao, Day newDay, string newKey)
 {
     newDay.DayId = newKey;
     await tDao.InsertEntityAsync(newDay).ConfigureAwait(false);
 }
Exemplo n.º 2
0
 public async Task InsertIntoActor(Actor actor)
 {
     await _dao.InsertEntityAsync(actor);
 }