Ejemplo n.º 1
0
        public OperationResult <bool> SaveQuestion(IQuestionDTO questionId)
        {
            IQuestionBDC questionBDC = BDCFactory.Create <IQuestionBDC>();

            return(questionBDC.SaveQuestion(questionId));
        }
Ejemplo n.º 2
0
        public OperationResult <bool> DeleteQuestion(int questionId)
        {
            IQuestionBDC questionBDC = BDCFactory.Create <IQuestionBDC>();

            return(questionBDC.DeleteQuestion(questionId));
        }
Ejemplo n.º 3
0
        public OperationResult <IList <IQuestionDTO> > GetAllQuestions()
        {
            IQuestionBDC questionBDC = BDCFactory.Create <IQuestionBDC>();

            return(questionBDC.GetAllQuestions());
        }
Ejemplo n.º 4
0
        public OperationResult <IQuestionDTO> GetQuestionById(int questionId)
        {
            IQuestionBDC questionBDC = BDCFactory.Create <IQuestionBDC>();

            return(questionBDC.GetQuestionById(questionId));
        }
Ejemplo n.º 5
0
        public OperationResult <IList <IQuestionDTO> > GetQuestionsOfPaper(int paperId)
        {
            IPaperBDC paperBDC = BDCFactory.Create <IPaperBDC>();

            return(paperBDC.GetQuestionsOfPaper(paperId));
        }
Ejemplo n.º 6
0
        public OperationResult <bool> DeletePaper(int paperId)
        {
            IPaperBDC paperBDC = BDCFactory.Create <IPaperBDC>();

            return(paperBDC.DeletePaper(paperId));
        }
Ejemplo n.º 7
0
        public OperationResult <bool> SavePaper(IPaperDTO noticeDTO)
        {
            IPaperBDC paperBDC = BDCFactory.Create <IPaperBDC>();

            return(paperBDC.SavePaper(noticeDTO));
        }
Ejemplo n.º 8
0
        public OperationResult <IPaperDTO> GetPaperById(int paperId)
        {
            IPaperBDC paperBDC = BDCFactory.Create <IPaperBDC>();

            return(paperBDC.GetPaperById(paperId));
        }
Ejemplo n.º 9
0
        public OperationResult <IList <IPaperDTO> > GetAllPapers()
        {
            IPaperBDC paperBDC = BDCFactory.Create <IPaperBDC>();

            return(paperBDC.GetAllPapers());
        }