Esempio n. 1
0
        public static List <Author> GetRandomList(int count)
        {
            List <Author> authors = new List <Author>();

            for (int i = 0; i < count; i++)
            {
                Author author = Author.GetRandom(i + "_");
                authors.Add(author);
            }
            return(authors);
        }