public KursersController(DanreviDbContext context, IUserContext admin)
 {
     _context     = context;
     _usercontext = admin;
 }
 public AttendMødeController(DanreviDbContext context, IUserContext admin)
 {
     _context     = context;
     _userContext = admin;
 }
Beispiel #3
0
 public UserContext(DanreviDbContext context)
 {
     _context = context;
 }
 public MyCoursesController(DanreviDbContext context, IUserContext userContext)
 {
     _context     = context;
     _userContext = userContext;
 }
Beispiel #5
0
 public MyMeetingsController(DanreviDbContext context, IUserContext userContext)
 {
     _context     = context;
     _userContext = userContext;
 }
Beispiel #6
0
 public DeadlinesController(DanreviDbContext context, IUserContext admin)
 {
     _context     = context;
     _usercontext = admin;
 }