예제 #1
0
        public ActionResult Export(List <RawQuestionnaire> model, DateTime?date)
        {
            ResponseLogicService.ExportToResponse(model);

            return(RedirectToAction("Export", new { date }));
//            return View(ViewNames.RawQuestionnaireList, model);
        }
예제 #2
0
 public ActionResult ExportSearch(List <RawQuestionnaire> model,
                                  string trainerTC, string courseTCList, byte?responseType,
                                  bool isWebinar)
 {
     ResponseLogicService.ExportToResponse(model);
     return(RedirectToAction("ExportSearch",
                             new { trainerTC, courseTCList, responseType, isWebinar }));
 }