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; }
public void setAuthor(Person Author) { this.Author=Author; }