public void Show() { Console.WriteLine("BOOK:"); author.Show(); title.Show(); content.Show(); }
static void Main(string[] args) { Book book = new Book(); book.author = Console.ReadLine(); book.title = Console.ReadLine(); book.content = Console.ReadLine(); Title title = new Title(); title.Show(); Author author = new Author(); author.Show(); Content content = new Content(); content.Show(); }
public void Show() { _title.Show(); _author.Show(); _content.Show(); }
public void Show() { title.Show(); author.Show(); content.Show(); }
public void Show() { Nazvanie.Show(); Pisatel.Show(); Plan.Show(); }