/// <summary>
        /// Get a page number for downloading the next bunch of TV shows
        /// </summary>
        public async Task <int> GetNextPageNumberAsync()
        {
            var lastShow = await _showsRepository.GetLastShowAsync();

            return((lastShow?.ID ?? 0) / 250);
        }