コード例 #1
0
ファイル: LogDataRepository.cs プロジェクト: kdanilkov/Xpence
 public async Task UpsertLogDataBatchAsync(List <LogData> logData, bool sync = false)
 {
     await _itemManagerWrapper.UpsertBatch(logData, sync);
 }
コード例 #2
0
 public async Task UpsertUserAccountBatchAsync(List <UserAccount> userAccount, bool sync = false)
 {
     await _itemManagerWrapper.UpsertBatch(userAccount, sync);
 }