public HostRoleAndUserCreator(DevDbContext context)
 {
     _context = context;
 }
예제 #2
0
 public QuestionRepo(DevDbContext context)
 {
     this._context = context;
 }
 public DefaultSettingsCreator(DevDbContext context)
 {
     _context = context;
 }
예제 #4
0
 public TenantRoleAndUserBuilder(DevDbContext context, int tenantId)
 {
     _context  = context;
     _tenantId = tenantId;
 }
예제 #5
0
 public DefaultLanguagesCreator(DevDbContext context)
 {
     _context = context;
 }
 public InitialHostDbBuilder(DevDbContext context)
 {
     _context = context;
 }
예제 #7
0
 public DefaultTenantCreator(DevDbContext context)
 {
     _context = context;
 }
예제 #8
0
 public AnswerRepo(DevDbContext context)
 {
     this._context = context;
 }
예제 #9
0
 public RatingRepo(DevDbContext context)
 {
     this._context = context;
 }
예제 #10
0
 public UserDetailsRepository(DevDbContext dbContext) : base(dbContext)
 {
     _dbContext = dbContext;
 }
예제 #11
0
 public DefaultTenantBuilder(DevDbContext context)
 {
     _context = context;
 }
예제 #12
0
 public QuizRepo(DevDbContext context)
 {
     this._context = context;
 }
 public DefaultEditionsCreator(DevDbContext context)
 {
     _context = context;
 }
예제 #14
0
 public ScoresRepo(DevDbContext context)
 {
     this._context = context;
 }