Skip to content

Commit

Permalink
update interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcin Wolnik committed Oct 12, 2017
1 parent e03355a commit e5eb7cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public interface ITableStorage
Task<object> AddOrUpdateAsync(string tableName, ITableEntity entity);
Task<object> DeleteAsync(string tableName, ITableEntity entity);
Task<object> AddAsync(string tableName, ITableEntity entity);
Task<object> AddBatchAsync(string tableName, IEnumerable<ITableEntity> entities);
Task<IEnumerable<T>> AddBatchAsync<T>(string tableName, IEnumerable<ITableEntity> entities) where T : class, ITableEntity, new();
Task<object> UpdateAsync(string tableName, ITableEntity entity);
}
}

0 comments on commit e5eb7cb

Please sign in to comment.