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

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

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