using Model; using Shared; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Business { public partial class DbData { public class RunesManager : IRunesManager { private readonly DbData parent; public RunesManager(DbData parent) => this.parent = parent; public Task AddItem(Model.Rune? item) { throw new NotImplementedException(); } public Task DeleteItem(Model.Rune? item) { throw new NotImplementedException(); } public Task> GetItems(int index, int count, string? orderingPropertyName = null, bool descending = false) { throw new NotImplementedException(); } public Task> GetItemsByFamily(RuneFamily family, int index, int count, string? orderingPropertyName = null, bool descending = false) { throw new NotImplementedException(); } public Task> GetItemsByName(string substring, int index, int count, string? orderingPropertyName = null, bool descending = false) { throw new NotImplementedException(); } public Task GetNbItems() { throw new NotImplementedException(); } public Task GetNbItemsByFamily(RuneFamily family) { throw new NotImplementedException(); } public Task GetNbItemsByName(string substring) { throw new NotImplementedException(); } public Task UpdateItem(Model.Rune? oldItem, Model.Rune? newItem) { throw new NotImplementedException(); } } } }