public ActionResult Add(PollAddModel model) { Polls.AddPoll(model.Topic, model.Description, model.AllowMultiple, model.HideResultsUntilFinished, model.HideVoters, model.EndDate, model.EndTime, model.Options, MemberSession.GetMemberId()); return(RedirectToAction("AllPolls")); }