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)); }
public Question Update(Question question) { var eQuestion = _iDQuestion.Update(EQuestion(question)); return(Question(eQuestion)); }