Beispiel #1
0
        internal Book(string title, string author)
        {
            BookValidator.ValidateForCreation(title, author);

            Title  = title;
            Author = author;
        }