You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
2.3 KiB

using System;
using Shared;
namespace Model
{
public interface IDataManager : IDisposable
{
IChampionsManager ChampionsMgr { get; }
ISkinsManager SkinsMgr { get; }
IRunesManager RunesMgr { get; }
IRunePagesManager RunePagesMgr { get; }
}
public interface IChampionsManager : IGenericDataManager<Champion?>
{
Task<int> GetNbItemsByCharacteristic(string charName);
Task<IEnumerable<Champion?>> GetItemsByCharacteristic(string charName, int index, int count, string? orderingPropertyName = null, bool descending = false);
Task<int> GetNbItemsByClass(ChampionClass championClass);
Task<IEnumerable<Champion?>> GetItemsByClass(ChampionClass championClass, int index, int count, string? orderingPropertyName = null, bool descending = false);
Task<int> GetNbItemsBySkill(Skill? skill);
Task<IEnumerable<Champion?>> GetItemsBySkill(Skill? skill, int index, int count, string? orderingPropertyName = null, bool descending = false);
Task<int> GetNbItemsByRunePage(RunePage? runePage);
Task<IEnumerable<Champion?>> GetItemsByRunePage(RunePage? runePage, int index, int count, string? orderingPropertyName = null, bool descending = false);
Task<int> GetNbItemsBySkill(string skill);
Task<IEnumerable<Champion?>> GetItemsBySkill(string skill, int index, int count, string? orderingPropertyName = null, bool descending = false);
}
public interface ISkinsManager : IGenericDataManager<Skin?>
{
Task<int> GetNbItemsByChampion(Champion? champion);
Task<IEnumerable<Skin?>> GetItemsByChampion(Champion? champion, int index, int count, string? orderingPropertyName = null, bool descending = false);
}
public interface IRunesManager : IGenericDataManager<Rune?>
{
Task<int> GetNbItemsByFamily(RuneFamily family);
Task<IEnumerable<Rune?>> GetItemsByFamily(RuneFamily family, int index, int count, string? orderingPropertyName = null, bool descending = false);
}
public interface IRunePagesManager : IGenericDataManager<RunePage?>
{
Task<int> GetNbItemsByRune(Rune? rune);
Task<IEnumerable<RunePage?>> GetItemsByRune(Rune? rune, int index, int count, string? orderingPropertyName = null, bool descending = false);
Task<int> GetNbItemsByChampion(Champion? champion);
Task<IEnumerable<RunePage?>> GetItemsByChampion(Champion? champion, int index, int count, string? orderingPropertyName = null, bool descending = false);
}
}