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