using Model; namespace ApiManager { public partial class ApiManagerData { public class SkinsManager : HttpClientManager, ISkinsManager { private const string UrlApiSkins = "/api/Skins"; public SkinsManager(HttpClient httpClient) : base(httpClient) { } public Task AddItem(Skin? item) { throw new NotImplementedException(); } public Task DeleteItem(Skin? 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> GetItemsByChampion(Champion? champion, 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 GetNbItemsByChampion(Champion? champion) { throw new NotImplementedException(); } public Task GetNbItemsByName(string substring) { throw new NotImplementedException(); } public Task UpdateItem(Skin? oldItem, Skin? newItem) { throw new NotImplementedException(); } } } }