Esempio n. 1
0
 public async Task <bool> UpdateStorageHistory(StorageHistoryPOCO storageHistory)
 {
     return(await Connection.UpdateAsync(storageHistory) == 1);
 }
Esempio n. 2
0
 public async Task <bool> AddStorageHistory(StorageHistoryPOCO storageHistory)
 {
     return(await Connection.SaveAsync(storageHistory));
 }