using System; using Model; namespace DbDataManager { public class CaseManager: ICasesManager { public Task AddItem(Case? item) { throw new NotImplementedException(); } public Task DeleteItem(Case? item) { throw new NotImplementedException(); } public Task> GetItems(int index, int count, string? orderingPropertyName = null, bool descending = false) { throw new NotImplementedException(); } public Task GetNbItems() { throw new NotImplementedException(); } public Task UpdateItem(Case? oldItem, Case? newItem) { throw new NotImplementedException(); } } }