Bookstore.Data.Book.Book C# (CSharp) Method

Book() public method

public Book ( ) : System
return System
        public Book()
        {
            this.Reviews = new HashSet<Review>();
            this.Authors = new HashSet<Author>();
        }
    
Book