示例#1
0
 public async Task <NoteGroup> GetAsync(INoteGroupIdentity identity)
 {
     return(await _dataAccessor.GetAsync(identity));
 }
示例#2
0
 public async Task <NoteGroup> UpdateAsync(INoteGroupIdentity identity, NoteGroupUpdateModel update)
 {
     return(await _dataAccessor.UpdateAsync(identity, update));
 }
示例#3
0
 public async Task DeleteAsync(INoteGroupIdentity identity)
 {
     await _dataAccessor.DeleteAsync(identity);
 }