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

            InformationBAL _bal = new InformationBAL();

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

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