Пример #1
0
 public Book(string title, string ISBN, string Publisher, int year, Person author)
 {
     this.Title=title;
     this.ISBN=ISBN;
     this.Publisher=Publisher;
     this.Year=year;
     this.Author=author;
 }
Пример #2
0
 public void setAuthor(Person Author)
 {
     this.Author=Author;
 }