示例#1
0
 public async Task InsertAsync(IPublishingHouse house)
 {
     await _publishingHouseTablestorage.InsertOrMergeAsync(PublishingHouseEntity.Create(house));
 }
示例#2
0
 public async Task InsertAsync(IBook book)
 {
     await _bookTablestorage.InsertOrMergeAsync(BookEntity.Create(book));
 }
示例#3
0
 public async Task InsertAsync(IAuthor author)
 {
     await _authorTablestorage.InsertOrMergeAsync(AuthorEntity.Create(author));
 }