public virtual void UpdateName(string name) { AuthorName = new AuthorName(name); }
private Author(Guid id, AuthorName authorName, AuthorPicture authorPicture) : base(id) { AuthorName = authorName; AuthorPicture = authorPicture; }