예제 #1
0
        public CreatorController(ICreatorView view)
        {
            this.view = view;

            currentQuestion = -1;
            questions       = new List <Question>();
            isDataDirty     = false;
        }
예제 #2
0
        public CreatorController(ICreatorView view, string path, List <Question> questions) : this(view)
        {
            this.view     = view;
            this.filePath = path;

            currentQuestion = 0;
            this.questions  = questions;
            isDataDirty     = false;
        }