public static string FormatArrayToHtmlHeader(object[] obj)
        {
            string header = "<table class ='table table-hover'> <thead> <tr>";

            header += HtmlEmit.GetArrayHeader(obj[0]);
            header += "</tr> </thead>";
            return(header);
        }
        public static string FormatArrayToHtmlBody(object [] obj)
        {
            string body = "<tbody>";

            for (int i = 0; i < obj.Length; i++)
            {
                body += HtmlEmit.GetArrayBody(obj[i]);
            }
            body += "</tbody>";
            return(body);
        }