using EFLol; using Model; namespace apiLOL { public class EFDataManager : IDataManager { // Connect to the MyDbContext class private readonly MyDbContext _context; // Constructor public EFDataManager(MyDbContext context) { _context = context; } public IChampionsManager ChampionsMgr => throw new NotImplementedException(); public ISkinsManager SkinsMgr => throw new NotImplementedException(); public IRunesManager RunesMgr => throw new NotImplementedException(); public IRunePagesManager RunePagesMgr => throw new NotImplementedException(); // Implement the interface } }