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