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.
26 lines
545 B
26 lines
545 B
|
|
using Model;
|
|
|
|
namespace RelationApi
|
|
{
|
|
|
|
public class Relation : IDataManager
|
|
{
|
|
public Relation()
|
|
{
|
|
ChampionsMgr = new RelationChampion();
|
|
SkinsMgr = new RelationSkins();
|
|
RunesMgr = new RelationRune();
|
|
RunePagesMgr = new RelationRunePage();
|
|
}
|
|
|
|
public IChampionsManager ChampionsMgr { get; }
|
|
|
|
public ISkinsManager SkinsMgr { get; }
|
|
|
|
public IRunesManager RunesMgr { get; }
|
|
|
|
public IRunePagesManager RunePagesMgr { get; }
|
|
|
|
}
|
|
} |