Exemplo n.º 1
0
 public void Show()
 {
     Console.WriteLine("BOOK:");
     author.Show();
     title.Show();
     content.Show();
 }
Exemplo n.º 2
0
        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();
        }
Exemplo n.º 3
0
 public void Show()
 {
     _title.Show();
     _author.Show();
     _content.Show();
 }
Exemplo n.º 4
0
 public void Show()
 {
     Auth.Show();
     Cont.Show();
     Title.Show();
 }
Exemplo n.º 5
0
 public void Show()
 {
     title.Show();
     author.Show();
     content.Show();
 }
Exemplo n.º 6
0
 public void Show()
 {
     Nazvanie.Show();
     Pisatel.Show();
     Plan.Show();
 }