Пример #1
0
        public BookBuilder CrucialCOnversations()
        {
            Title       = "Crucial Conversations";
            ReleaseDate = new DateTime(2002, 1, 1);

            Author   = new AuthorBuilder().JosephGrenny().Build();
            AuthorId = Author.Id;

            return(this);
        }
Пример #2
0
        public BookBuilder AlgorithmsToLiveBy()
        {
            Title       = "Algorithms To Live By";
            ReleaseDate = new DateTime(2016, 1, 1);

            Author   = new AuthorBuilder().BrianChristian().Build();
            AuthorId = Author.Id;

            return(this);
        }
Пример #3
0
        public BookBuilder TheGoal()
        {
            Title       = "The Goal";
            ReleaseDate = new DateTime(1984, 1, 1);

            Author   = new AuthorBuilder().EliyahuGoldratt().Build();
            AuthorId = Author.Id;

            return(this);
        }
Пример #4
0
        public BookBuilder ThePhoenixProject()
        {
            Title       = "The Phoenix Project";
            ReleaseDate = new DateTime(2013, 1, 1);

            Author   = new AuthorBuilder().GeneKim().Build();
            AuthorId = Author.Id;

            return(this);
        }
Пример #5
0
        public BookBuilder FiveDysfunctions()
        {
            Title       = "Five Dysfunctions of a Team";
            ReleaseDate = new DateTime(2002, 1, 1);

            Author   = new AuthorBuilder().PatrickLencioni().Build();
            AuthorId = Author.Id;

            return(this);
        }