public DetailsModel(IEngineService engineService, HumanErrorProjectContext context)
 {
     EngineService  = engineService;
     Context        = context;
     PreAssignments = context.Set <PreAssignment>();
     Assignments    = context.Set <Assignment>();
 }
Exemplo n.º 2
0
 public IndexModel(HumanErrorProjectContext context, IOptions <ViewOptions> options)
 {
     Context     = context;
     Assignments = context.Set <Assignment>();
     Models      = context.Set <MarkovModel>();
     Options     = options.Value;
 }
 public StudentsModel(HumanErrorProjectContext context, IOptions <ViewOptions> options)
 {
     Context       = context;
     CourseClasses = context.Set <CourseClass>();
     Students      = context.Set <Student>();
     Options       = options.Value;
 }
 public DetailsModel(HumanErrorProjectContext context, ColorHelper colorHelper)
 {
     Context      = context;
     MarkovModels = context.Set <MarkovModel>();
     Snapshots    = context.Set <Snapshot>();
     ColorHelper  = colorHelper;
 }
Exemplo n.º 5
0
 public StateModel(HumanErrorProjectContext context, ColorHelper colorHelper)
 {
     Context         = context;
     MarkovModels    = context.Set <MarkovModel>();
     Snapshots       = context.Set <Snapshot>();
     SurveyQuestions = context.Set <SurveyQuestion>();
     ColorHelper     = colorHelper;
 }
Exemplo n.º 6
0
 public RegisterModel(HumanErrorProjectContext context, SignInManager <IdentityUser> signInManager, UserManager <IdentityUser> userManager)
 {
     Context       = context;
     SignInManager = signInManager;
     UserManager   = userManager;
     Students      = Context.Set <Student>();
 }
 public TestResultsModel(HumanErrorProjectContext context)
 {
     Context     = context;
     Assignments = context.Set <Assignment>();
 }
 public DetailsModel(HumanErrorProjectContext context, IOptions <ViewOptions> options)
 {
     Context = context;
     Surveys = context.Set <Survey>();
     Options = options.Value;
 }
 public SubmitModel(HumanErrorProjectContext context)
 {
     Context            = context;
     SurveyQuestionsSet = context.Set <SurveyQuestion>();
     Surveys            = context.Set <Survey>();
 }
Exemplo n.º 10
0
 public EditModel(HumanErrorProjectContext context)
 {
     Context  = context;
     Students = context.Set <Student>();
 }
Exemplo n.º 11
0
 public IndexModel(HumanErrorProjectContext context, IOptions <ViewOptions> options)
 {
     Context  = context;
     Students = context.Set <Student>();
     Options  = options.Value;
 }
Exemplo n.º 12
0
 public CreateModel(HumanErrorProjectContext context, IEngineService engineService)
 {
     Context       = context;
     Assignments   = context.Set <Assignment>();
     EngineService = engineService;
 }
Exemplo n.º 13
0
 public CreateModel(HumanErrorProjectContext context, IEngineService engineService)
 {
     Context       = context;
     CourseClasses = context.Set <CourseClass>();
     EngineService = engineService;
 }
 public DetailsModel(HumanErrorProjectContext context)
 {
     Context   = context;
     Snapshots = context.Set <Snapshot>();
 }
Exemplo n.º 15
0
 public DeleteModel(HumanErrorProjectContext context)
 {
     Context         = context;
     SurveyQuestions = context.Set <SurveyQuestion>();
 }
Exemplo n.º 16
0
 public ReviewModel(HumanErrorProjectContext context)
 {
     Context = context;
     Surveys = context.Set <Survey>();
 }
Exemplo n.º 17
0
 public IndexModel(HumanErrorProjectContext context, IOptions <ViewOptions> options)
 {
     CourseClasses = context.Set <CourseClass>();
     Options       = options.Value;
 }
 public MethodDeclarationsModel(HumanErrorProjectContext context)
 {
     Context     = context;
     Assignments = context.Set <Assignment>();
 }
Exemplo n.º 19
0
 public DeleteModel(HumanErrorProjectContext context)
 {
     Context       = context;
     CourseClasses = context.Set <CourseClass>();
 }
Exemplo n.º 20
0
 public DeleteModel(DeleteHelper deleteHelper, HumanErrorProjectContext context)
 {
     DeleteHelper   = deleteHelper;
     Context        = context;
     PreAssignments = context.Set <PreAssignment>();
 }
Exemplo n.º 21
0
 public IndexModel(HumanErrorProjectContext context)
 {
     Context     = context;
     Assignments = context.Set <Assignment>();
 }
 public SurveysModel(HumanErrorProjectContext context)
 {
     Context         = context;
     Assignments     = context.Set <Assignment>();
     SurveyQuestions = context.Set <SurveyQuestion>();
 }
Exemplo n.º 23
0
 public DeleteModel(HumanErrorProjectContext context)
 {
     Context  = context;
     Students = Context.Set <Student>();
 }
Exemplo n.º 24
0
 public AbstractSyntaxTreesModel(HumanErrorProjectContext context)
 {
     Context     = context;
     Assignments = context.Set <Assignment>();
 }
Exemplo n.º 25
0
 public ProgressModel(HumanErrorProjectContext context)
 {
     Context     = context;
     Students    = context.Set <Student>();
     Assignments = context.Set <Assignment>();
 }
Exemplo n.º 26
0
 public DeleteModel(HumanErrorProjectContext context, DeleteHelper deleteHelper)
 {
     Context      = context;
     DeleteHelper = deleteHelper;
     MarkovModels = context.Set <MarkovModel>();
 }
Exemplo n.º 27
0
 public IndexModel(HumanErrorProjectContext context, IOptions <ViewOptions> options, IEmailService emailService)
 {
     Students     = context.Set <Student>();
     Options      = options.Value;
     EmailService = emailService;
 }
 public BagOfWordsModel(HumanErrorProjectContext context)
 {
     Context     = context;
     Assignments = context.Set <Assignment>();
 }
Exemplo n.º 29
0
 public CreateModel(HumanErrorProjectContext context)
 {
     Context         = context;
     CourseClasses   = context.Set <CourseClass>();
     SurveyQuestions = context.Set <SurveyQuestion>();
 }