public static List <PollChoiceInfo> GetPollChoices(int pollId) { IPoll dal = Factory <IPoll> .Create("Poll"); return(new List <PollChoiceInfo>(dal.GetPollChoices(pollId))); }