Example #1
0
        static void Main(string[] args)
        {
            /*
             * Task 1
             * Add additional information to our bookstore
             * so that it feels more complete
             * (more data for the books, way to add more books etc.)
             */

            var bookstore = new Bookstore();

            /*
             * Task 2
             * Update the bokstore so that we can actually
             * purcahse books from it
             */
        }
Example #2
0
        static void Main(string[] args)
        {
            // Genres
            ///var fantasy = new Genre("Fantasy");
            //var adventure = new Genre("Adventure");

            //var genres1 = new List<Genre>();
            //genres1.Add(fantasy);

            // Books
            var book1 = new Book(1, "Harry Potter", "J. K. Rowling", genres1, 5.00);
            var book2 = new Book(2, "Lord of the rings", "J. R. R. Tolken", genres2, 10.00);

            // Our Librady
            var books = new List <Book>();

            books.Add(book1);
            books.Add(book2);

            var bookstore = new Bookstore(books);

            Console.WriteLine(bookstore.ToString());
        }