using Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DbManager { public partial class DbManager { public class RunesManager : IRunesManager { private readonly DbManager parent; public RunesManager(DbManager parent) => this.parent = parent; public Task AddItem(Model.Rune? item) { throw new NotImplementedException(); } public Task DeleteItem(Model.Rune? item) { throw new NotImplementedException(); } public Task> GetItemByName(string substring, int index, int count, string? orderingPropertyName = null, bool descending = false) { 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(); } } } }