コード例 #1
0
        public void AddBook(string title, int author, string isbn) // Lägg till bok
        {
            BibliotechDAL bd   = new BibliotechDAL();
            int           copy = bd.GetCopyNbr(isbn);
            Book          b    = new Book(title, author, isbn, copy);

            bd.AddNewBook(b);
        }