(TodoList existingList)
| 41 | } |
| 42 | |
| 43 | public async Task UpdateList(TodoList existingList) |
| 44 | { |
| 45 | await _listsCollection.ReplaceItemAsync(existingList, existingList.Id, new PartitionKey(existingList.Id)); |
| 46 | } |
| 47 | |
| 48 | public async Task<IEnumerable<TodoItem>> GetListItemsAsync(string listId, int? skip, int? batchSize) |
| 49 | { |
nothing calls this directly
no outgoing calls
no test coverage detected