Exemplo n.º 1
0
        public Library(string title, string author) : base(title)
        {
            // Title = title;
            Author = author;
            Books  = new List <Book>();


            SideDesk = new SideDesk();
        }
Exemplo n.º 2
0
 public void VisitSideDesk()
 {
     SideDesk.VisitSideDesk();
 }