/// <summary>
        /// Determines whether [is seed name valid] [the specified seed name].
        /// </summary>
        /// <param name="seedName">Name of the seed.</param>
        /// <returns>
        ///   <c>true</c> if [is seed name valid] [the specified seed name]; otherwise, <c>false</c>.
        /// </returns>
        private bool IsSeedNameValid(string seedName)
        {
            var match = _seedRegex.Match(seedName);

            if (match.Success)
            {
                var dateTime = SeedHelper.ExtractDateFromSeedName(match.Groups[1].Value);
            }

            return(match.Success);
        }