コード例 #1
0
 public AccountManager(DbLeonContext dbcontext)
 {
     _context = dbcontext;
 }
コード例 #2
0
 public ExamManager(DbLeonContext dbcontext)
 {
     this._context = dbcontext;
 }
コード例 #3
0
ファイル: ItemManager.cs プロジェクト: m88120/TechnicalTest
 public ItemManager(DbLeonContext dbcontext)
 {
     _context = dbcontext;
 }
コード例 #4
0
 public ListManager(DbLeonContext context)
 {
     _context = context;
 }
コード例 #5
0
 public TechinicalTestManager(DbLeonContext context, IOptions <AppSetting> appSettings)
 {
     this._context           = context;
     ADAuthUtils.AppSettings = appSettings.Value;
 }
コード例 #6
0
 public ExamSessionManager(DbLeonContext dbcontext, IHttpContextAccessor _currentContext)
 {
     this._context  = dbcontext;
     currentContext = _currentContext;
 }
コード例 #7
0
 public ExamQuestionManager(DbLeonContext dbcontext)
 {
     this._context = dbcontext;
 }