using Model; namespace RelationApi { public class Relation : IDataManager { public Relation() { RelationChampion = new RelationChampion(); SkinsMgr = new SkinsManager(this); RunesMgr = new RunesManager(this); RunePagesMgr = new RunePagesManager(this); } public IChampionsManager RelationChampion { get; } public ISkinsManager SkinsMgr { get; } public IRunesManager RunesMgr { get; } public IRunePagesManager RunePagesMgr { get; } } } }