/// <summary>
        /// Initializes a new instance of the <see cref="AcronymFactory"/> class.
        /// </summary>
        /// <param name="options">The options.</param>
        public AcronymFactory(ICultureOptions options)
        {
            if (options == null)
            {
                throw new ArgumentNullException("options");
            }

            this.Options = options;
        }
 /// <summary>
 /// Initializes a new instance of the <see cref="AcronymFactory"/> class.
 /// </summary>
 public AcronymFactory()
 {
     this.Options = new EnglishCultureOptions();
 }