BookStore.Models.Author.Author C# (CSharp) Method

Author() public method

public Author ( ) : System.Collections.Generic
return System.Collections.Generic
        public Author()
        {
            this.reviews = new HashSet<Review>();
            this.books = new HashSet<Book>();
        }
Author