/// <summary>
        /// Returns a list of RandomPersonName objects (Static function)
        /// </summary>
        /// <param name="count">Count of names that should be generated</param>
        /// <returns>List of RandomPersonName objects</returns>
        public static List <RandomPersonName> StaticGenerate(int count)
        {
            RandomPersonNameGenerator rpng = new RandomPersonNameGenerator();

            return(rpng.Generate(count));
        }
 /// <summary>
 /// Returns a list of RandomPersonName objects (Static function)
 /// </summary>
 /// <param name="count">Count of names that should be generated</param>
 /// <returns>List of RandomPersonName objects</returns>
 public static List<RandomPersonName> StaticGenerate(int count)
 {
     RandomPersonNameGenerator rpng = new RandomPersonNameGenerator();
     return rpng.Generate(count);
 }