IsThereAnyNews.Services.Implementation.UpdateService.UpdateGlobalRss C# (CSharp) Method

UpdateGlobalRss() public method

public UpdateGlobalRss ( ) : void
return void
        public void UpdateGlobalRss()
        {
            try
            {
                var rssChannel = this.updateRepository.LoadChannelToUpdate();
                this.rssChannelsUpdatedRepository.SaveEvent(rssChannel.Id);
                this.UpdateChannel(rssChannel);
            }
            catch (Exception e)
            {
                e.ToExceptionless().Submit();
                System.Diagnostics.Debug.WriteLine(e.Message);
            }
        }