Ejemplo n.º 1
0
 public HomeController(LessonsLearnedMPEntities context) : base(context)
 {
 }
Ejemplo n.º 2
0
 public AdminController(LessonsLearnedMPEntities context, IDistributedCache cache) : base(context, cache)
 {
 }
Ejemplo n.º 3
0
 protected ControllerBase(LessonsLearnedMPEntities context)
 {
     _dbcontext = context;
 }
Ejemplo n.º 4
0
 public SharedController(LessonsLearnedMPEntities context) : base(context)
 {
 }
 public DashboardController(LessonsLearnedMPEntities context) : base(context)
 {
 }
Ejemplo n.º 6
0
 protected ControllerBase(LessonsLearnedMPEntities context, IDistributedCache cache)
 {
     _dbcontext = context;
     _cache     = cache;
 }