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.
LOL/Sources/apiLOL/EFDataManager.cs

29 lines
657 B

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