예제 #1
0
        public virtual List <ObchodnyVestnik> PublishedJournals(bool retry = true)
        {
            List <ObchodnyVestnik> result = null;

            try
            {
                result = ServiceClient.ZiskatZoznamVydanychOV(Settings.UserName, Settings.Password)
                         .ToList();
                _retryCounter = 0;
            }
            catch (Exception)
            {
                ServiceClient.Abort();
                _serviceClient = null;

                if (AllowedRetriesCount < 0)
                {
                    throw;
                }
                else if (AllowedRetriesCount == 0)
                {
                    result = PublishedJournals(retry);
                }
                else
                {
                    _retryCounter++;
                    result = PublishedJournals(retry);
                }
            }

            return(result);
        }
예제 #2
0
        public virtual ObchodnyVestnik LastPublishedJournal(bool retry = true)
        {
            ObchodnyVestnik result = null;

            try
            {
                result        = ServiceClient.ZiskatPoslednyVydanyOV(Settings.UserName, Settings.Password);
                _retryCounter = 0;
            }
            catch (Exception)
            {
                ServiceClient.Abort();
                _serviceClient = null;

                if (AllowedRetriesCount < 0)
                {
                    throw;
                }
                else if (AllowedRetriesCount == 0)
                {
                    result = LastPublishedJournal(retry);
                }
                else
                {
                    _retryCounter++;
                    result = LastPublishedJournal(retry);
                }
            }

            return(result);
        }
예제 #3
0
        public string DownloadJournalBiddings(ObchodnyVestnik journal, bool retry = true)
        {
            var result = "";

            try
            {
                result        = ServiceClient.StiahnutPodaniaOV(Settings.UserName, Settings.Password, journal.Cislo, journal.Rocnik);
                _retryCounter = 0;
            }
            catch (Exception)
            {
                ServiceClient.Abort();
                _serviceClient = null;

                if (AllowedRetriesCount < 0)
                {
                    throw;
                }
                else if (AllowedRetriesCount == 0)
                {
                    result = DownloadJournalBiddings(journal, retry);
                }
                else
                {
                    _retryCounter++;
                    result = DownloadJournalBiddings(journal, retry);
                }
            }

            return(result);
        }
예제 #4
0
        public List <ObchodnyVestnikPodanie> DownloadJournalBiddingsByType(ArrayOfString codes, DateTime fromDate, DateTime toDate, bool retry = true)
        {
            List <ObchodnyVestnikPodanie> result = null;

            try
            {
                result = ServiceClient.StiahnutPodaniaOVPodlaTypu(Settings.UserName, Settings.Password, codes, fromDate, toDate)
                         .ToList();
                _retryCounter = 0;
            }
            catch (Exception)
            {
                ServiceClient.Abort();
                _serviceClient = null;

                if (AllowedRetriesCount < 0)
                {
                    throw;
                }
                else if (AllowedRetriesCount == 0)
                {
                    result = DownloadJournalBiddingsByType(codes, fromDate, toDate, retry);
                }
                else
                {
                    _retryCounter++;
                    result = DownloadJournalBiddingsByType(codes, fromDate, toDate, retry);
                }
            }

            return(result);
        }
예제 #5
0
        public virtual List <ObchodnyVestnikKapitola> CheckJournalChanges(ObchodnyVestnik journal, bool retry = true)
        {
            List <ObchodnyVestnikKapitola> result = null;

            try
            {
                result = ServiceClient.SkontrolovatZmenyOV(Settings.UserName, Settings.Password, journal.Cislo, journal.Rocnik)
                         .ToList();
                _retryCounter = 0;
            }
            catch (Exception)
            {
                ServiceClient.Abort();
                _serviceClient = null;

                if (AllowedRetriesCount < 0)
                {
                    throw;
                }
                else if (AllowedRetriesCount == 0)
                {
                    result = CheckJournalChanges(journal, retry);
                }
                else
                {
                    _retryCounter++;
                    result = CheckJournalChanges(journal, retry);
                }
            }

            return(result);
        }