Esempio n. 1
0
        private static bool TestDownloadStockDataFromBSE(string bseDownloadUrl, string destinationFilePath)
        {
            var input = new DownloadStockDataFromBSEInput();
            input.BSEDownloadUrl = bseDownloadUrl;
            input.DestinationFilePath = destinationFilePath;

            var output = new DownloadStockDataFromBSE().Execute(input);

            return output.IsSuccessfullyDownloaded;
        }
Esempio n. 2
0
        private static bool TestDownloadStockDataFromBSE(string bseDownloadUrl, string destinationFilePath)
        {
            var input = new DownloadStockDataFromBSEInput();

            input.BSEDownloadUrl      = bseDownloadUrl;
            input.DestinationFilePath = destinationFilePath;

            var output = new DownloadStockDataFromBSE().Execute(input);

            return(output.IsSuccessfullyDownloaded);
        }