public Question Update(int updatedBy, Question question)
        {
            var eQuestion = _iDQuestion.Update(EQuestion(question));

            eQuestion.UpdatedDate = DateTime.Now;
            eQuestion.UpdatedBy   = updatedBy;
            eQuestion             = _iDQuestion.Update(eQuestion);
            return(Question(eQuestion));
        }
Пример #2
0
        public Question Update(Question question)
        {
            var eQuestion = _iDQuestion.Update(EQuestion(question));

            return(Question(eQuestion));
        }