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