public System.Web.Mvc.FileContentResult DownloadFertilityManagement()
        {
            string contentType = "text/html";
            string fileName    = "FertilityManagement.html";

            InformationBAL _bal = new InformationBAL();

            var content = _bal.DownloadFertilityManagement().ToArray();

            return(File(content, contentType, fileName));
        }