Ejemplo n.º 1
0
        private static void addingBookFeature()
        {
            Book bk = new Book();

            bk.BookID = MyConsole.getNumber("Enter the ISBN no of this book");
            bk.Title  = MyConsole.getString("Enter the title of this book");
            bk.Author = MyConsole.getString("Enter the Author of this book");
            bk.Price  = MyConsole.getDouble("Enter the Price of this book");
            try
            {
                bool result = mgr.AddNewBook(bk);
                if (!result)
                {
                    Console.WriteLine("No more books could be added");
                }
                else
                {
                    Console.WriteLine($"Book by title {bk.Title} is added successfully to the database");
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }
Ejemplo n.º 2
0
 static void InitializeComponent()
 {
     menu = string.Format($"~~~~~~~BOOK STORE MANAGEMENT SOFTWARE~~~~~~~~~~~~~~~~~~~\nTO ADD A NEW BOOK------------->PRESS 1\nTO UPDATE A BOOK------------>PRESS 2\nTO DELETE A BOOK------------PRESS 3\nTO FIND A BOOK------------->PRESS 4\nPS:ANY OTHER KEY IS CONSIDERED AS EXIT THE APP\n");
     //int size = MyConsole.getNumber("Enter the no of Books U wish to store in the BookStore");
     mgr = BookFactoryComponent.GetComponent();
     mgr.AddNewBook(new Book {
         BookID = 123, Title = "A Suitable Boy", Author = "Vikram Seth", Price = 1200
     });
     mgr.AddNewBook(new Book {
         BookID = 124, Title = "Disclosure", Author = "Micheal Crichton", Price = 500
     });
     mgr.AddNewBook(new Book {
         BookID = 125, Title = "The Mahabharatha", Author = "C Rajagoalachari", Price = 350
     });
     mgr.AddNewBook(new Book {
         BookID = 126, Title = "The Discovery of India", Author = "J . Nehru", Price = 800
     });
 }