using System; using Model; namespace DbDataManager { public class GrilleManager: IGrillesManager { public Task AddItem(Grille? item) { throw new NotImplementedException(); } public Task DeleteItem(Grille? 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(Grille? oldItem, Grille? newItem) { throw new NotImplementedException(); } } }