Beispiel #1
0
 public async Task RemoveAsync(AppEntity entity)
 {
     await Client.DeleteAsync(entity, "Self", entity).ConfigureAwait(false);
 }
Beispiel #2
0
 public async Task UpdateAsync(AppEntity entity)
 {
     await Client.PutAsync(entity, "Self", entity).ConfigureAwait(false);
 }
Beispiel #3
0
 public async Task<AppEntity> AddAsync(AppEntity entity)
 {
     return await Client.PostAsync<AppEntity, AppEntity>(entity, "Create", entity).ConfigureAwait(false);
 }