BookStore.Models.Author.Author C# (CSharp) 메소드

Author() 공개 메소드

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