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

Author() public method

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