public HomeController(LessonsLearnedMPEntities context) : base(context) { }
public AdminController(LessonsLearnedMPEntities context, IDistributedCache cache) : base(context, cache) { }
protected ControllerBase(LessonsLearnedMPEntities context) { _dbcontext = context; }
public SharedController(LessonsLearnedMPEntities context) : base(context) { }
public DashboardController(LessonsLearnedMPEntities context) : base(context) { }
protected ControllerBase(LessonsLearnedMPEntities context, IDistributedCache cache) { _dbcontext = context; _cache = cache; }