예제 #1
0
파일: Book.cs 프로젝트: D8991/Lab9
 public Book(Sale Good_Sale, string Book_Title, double Price, string Book_Author, string Book_Genre, string Book_Publisher) : base(Good_Sale, Book_Title, Price)
 {
     this.Book_Author    = Book_Author;
     this.Book_Genre     = Book_Genre;
     this.Book_Publisher = Book_Publisher;
 }