Beispiel #1
0
        public List <Book> GenerateBooks(int bookNo = 5)
        {
            Random random      = new Random();
            var    authorNames = new List <string>()
            {
                "Alexander Dumas", "Amartya Sen", "Bankim Chandra Chatterji", "Bankim Chandra Chatterji",
                "Arundati Roy", "Edward Morgan Forster", "Karl Marx", "Mulk Raj Anand"
            };

            var bookTitles = new List <string>()
            {
                "The Three Musketeers", "The Argumentative Indian", "Development as Freedom", "River of Smoke",
                "Circle of Reason", "Circle of Reason", "Clear City of the Day", "The Algebra of Infinite Justice"
            };

            var generatedBooks = new List <Book>();

            var fictionFactory    = new FictionFactory();
            var nonFictionFactory = new NonFictionFactory();

            for (int index = 0; index < bookNo; ++index)
            {
                generatedBooks.Add(fictionFactory.GetBook(bookTitles[random.Next(0, bookTitles.Count - 1)], authorNames[random.Next(0, authorNames.Count - 1)], random.Next(1800, 1950)));
                generatedBooks.Add(nonFictionFactory.GetBook(bookTitles[random.Next(0, bookTitles.Count - 1)], authorNames[random.Next(0, authorNames.Count - 1)], random.Next(1800, 1950)));
            }

            return(generatedBooks);
        }
Beispiel #2
0
 private Book MakeNonFiction()
 {
     while (true)
     {
         try
         {
             Console.WriteLine("Title ");
             string title = Console.ReadLine();
             Console.WriteLine("Author");
             string author = Console.ReadLine();
             Console.WriteLine("Publication date (year)");
             int date = Convert.ToInt32(Console.ReadLine());
             NonFictionFactory nonFictionFactory = new NonFictionFactory();
             return(nonFictionFactory.GetBook(title, author, date));
         }
         catch
         {
             Console.WriteLine("Something wrong");
         }
     }
 }