public AccountManager(DbLeonContext dbcontext)
 {
     _context = dbcontext;
 }
Exemple #2
0
 public ExamManager(DbLeonContext dbcontext)
 {
     this._context = dbcontext;
 }
Exemple #3
0
 public ItemManager(DbLeonContext dbcontext)
 {
     _context = dbcontext;
 }
Exemple #4
0
 public ListManager(DbLeonContext context)
 {
     _context = context;
 }
 public TechinicalTestManager(DbLeonContext context, IOptions <AppSetting> appSettings)
 {
     this._context           = context;
     ADAuthUtils.AppSettings = appSettings.Value;
 }
 public ExamSessionManager(DbLeonContext dbcontext, IHttpContextAccessor _currentContext)
 {
     this._context  = dbcontext;
     currentContext = _currentContext;
 }
Exemple #7
0
 public ExamQuestionManager(DbLeonContext dbcontext)
 {
     this._context = dbcontext;
 }