public Author(string name, string birthday, Literature.Book book) { _name = name; _birthday = birthday; bookOne = book; }
public Author() { _name = "Kirja Maija"; _birthday = "01.05.1500"; bookOne = new Literature.Book(); }