public String reciveQuestion() { consolePrintView.InputQuestionInfo(); return UserConsoleInputReader.readStringInput(); }
public void provideNewQuestion(int projectNumber, int categoryNumber, String categoryTitle) { String newQuestion = reciveQuestion(); addNewQuestion(newQuestion, projectNumber, categoryTitle); consolePrintView.singleCategorysProjectsView(prm.getOne(categoryTitle, projectNumber)); kr.projectSelector(categoryNumber, categoryTitle); }