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