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