Ejemplo n.º 1
0
 public HomeController(
     NewVersionHintsDBContext newVersionHintsDbContext,
     MLASDBContext mlasdbContext,
     ORCSDBContext orcsdbContext)
 {
     _newVersionHintsDbContext = newVersionHintsDbContext;
     _mlasdbContext            = mlasdbContext;
     _orcsdbContext            = orcsdbContext;
 }
Ejemplo n.º 2
0
 public ProfessionController(NewVersionHintsDBContext newVersionHintsDbContext)
 {
     _newVersionHintsDbContext = newVersionHintsDbContext;
 }
Ejemplo n.º 3
0
        public static IList <QuestionGroupTree> BuildQuestionTree(NewVersionHintsDBContext dbContext, string topParent)
        {
            var list = dbContext.QuestionGroupTree.Where(qgt => qgt.CNodeType == topParent).ToList();

            return(FlatToHierarchy(list, topParent, ""));
        }
Ejemplo n.º 4
0
 public QuestionController(NewVersionHintsDBContext newVersionHintsDbContext)
 {
     _newVersionHintsDbContext = newVersionHintsDbContext;
 }