Exemplo n.º 1
0
        // Constructor

        public Borrowable(LibraryItem libraryItem)
            : base(libraryItem)
        {
        }
Exemplo n.º 2
0
        // Constructor

        public Decorator(LibraryItem libraryItem)
        {
            this.libraryItem = libraryItem;
        }