public bool AddQuestion(CuteSurvey.Survey.Question question)
 {
     throw new NotImplementedException();
 }
 public bool Remove(CuteSurvey.Survey.Question question)
 {
     return(dataQuestion.Remove(question.TemplateID, question.QuestionID));
     //throw new NotImplementedException();
 }
 public bool Update(CuteSurvey.Survey.Question question)
 {
     return(dataQuestion.Update(question.TemplateID, question.QuestionID, question.QuestionName, question.Comments, question.Note,
                                question.IsRequired, question.MaxLength, (int)question.SelectionChoice, question.EnableComment, question.PageNo,
                                question.ValidationMessage));
 }