/// <summary>
        /// Creates the Html for a table using Install/ Update/ Restore data
        /// </summary>
        /// <returns></returns>
        public string InstallUpdatesRestoresByVSVersion()
        {
            string[]      installBlobNames = { "VsTrend1Day.json" };
            List <string> versions         = new List <string>();
            List <object> installs         = new List <object>();
            List <object> restores         = new List <object>();

            ReportHelpers.GetValuesFromBlobs(installBlobNames, StorageAccount, ContainerName, out versions, out installs);

            string[] restoreBlobNames = { "VsRestoreTrend1Day.json" };
            ReportHelpers.GetValuesFromBlobs(restoreBlobNames, StorageAccount, ContainerName, out versions, out restores);

            string installChartHtml = ReportHelpers.GetOperationsPerNuGetVersionTable(installs, restores, versions, "Install/Updates and Restores");

            return(installChartHtml);
        }