public HtmlTableExtract GetTable(string uri, string locos)
        {
            string file = DownloadServices.Download(uri, locos);

            var table = HtmlExtractHelpers.GetTable(file, "Type and origin");

            return(table);
        }
        public static string Download(string remoteUri, string name)
        {
            DownloadServices ds = ServiceLocator.Instance.GetService <DownloadServices>();

            return(ds.DownloadPage(remoteUri, name));
        }