예제 #1
0
 public void Show()
 {
     Console.WriteLine("BOOK:");
     author.Show();
     title.Show();
     content.Show();
 }
예제 #2
0
파일: Program.cs 프로젝트: Vetoldi/Repos
        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();
        }
예제 #3
0
 public void Show()
 {
     _title.Show();
     _author.Show();
     _content.Show();
 }
예제 #4
0
 public void Show()
 {
     Auth.Show();
     Cont.Show();
     Title.Show();
 }
예제 #5
0
 public void Show()
 {
     title.Show();
     author.Show();
     content.Show();
 }
예제 #6
0
 public void Show()
 {
     Nazvanie.Show();
     Pisatel.Show();
     Plan.Show();
 }