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.
|
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;
|
|
}
|
|
|
|
// Implement the interface
|
|
|
|
}
|
|
}
|