Esempio n. 1
0
        static void Main(string[] args)
        {
            IdeationQuestionManager     mgr  = new IdeationQuestionManager();
            IdeationQuestionsRepository repo = new IdeationQuestionsRepository();


            Console.WriteLine(repo.ReadAllIdeas());
            Console.WriteLine(mgr.GetIdeas().Count);
        }
Esempio n. 2
0
 public ModerationController(UserManager <UimvcUser> userManager, RoleService roleService)
 {
     _ideaMgr     = new IdeationQuestionManager();
     _platformMgr = new PlatformManager();
     _moduleMgr   = new ModuleManager();
     _projMgr     = new ProjectManager();
     _userManager = userManager;
     _roleService = roleService;
 }
Esempio n. 3
0
 public ThreadController(RoleService roleService)
 {
     _iqMgr       = new IdeationQuestionManager();
     _roleService = roleService;
 }
 public QuestionService()
 {
     _iqMgr = new IdeationQuestionManager();
     _qqMgr = new QuestionnaireQuestionManager();
 }
 public ProjectService()
 {
     _projectManager          = new ProjectManager();
     _moduleManager           = new ModuleManager();
     _ideationQuestionManager = new IdeationQuestionManager();
 }
 public PlatformController()
 {
     _platformMgr = new PlatformManager();
     _projectMgr  = new ProjectManager();
     _iqMgr       = new IdeationQuestionManager();
 }