public Book(TypeofBook type, string title, string author, int cost) { BookType = type; Title = title; Author = author; Cost = cost; }
public void AddBook(TypeofBook type, string title, string author, int cost) { Book newBook = new Book(type, title, author, cost); LibraryList.Add(newBook); }