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; } } }