public static Control GetOneCandidateVideoContent(string electionKey, string officeKey,
                                                          string politicianKey)
        {
            var reportObject = new CompareCandidatesReportResponsive();

            return(reportObject.GenerateOneCandidateVideoContent(electionKey, officeKey, politicianKey));
        }
        public static Control GetOneAnswerContent(string electionKey, string officeKey,
                                                  string questionKey)
        {
            var reportObject = new CompareCandidatesReportResponsive();

            return(reportObject.GenerateOneAnswerContent(electionKey, officeKey, questionKey));
        }
        public static Control GetReport(string electionKey, string officeKey, bool forBallotPage = false)
        {
            var reportObject = new CompareCandidatesReportResponsive();

            return(reportObject.GenerateReport(electionKey, officeKey, forBallotPage));
        }