public async Task Delete(Service Service)
 {
     await CosmosRepository <Service> .DeleteItemAsync(Service.Id);
 }
Пример #2
0
 public async Task Delete(Stories Story)
 {
     await CosmosRepository <Stories> .DeleteItemAsync(Story.Id);
 }