public ActionResult Detail()
        {
            var commicBook = new CommicBook()
            {
                SeriesTitle     = "The Amazing Spider Man",
                IssueNumber     = 700,
                DescriptionHtml = "<p>The quick brown fox jumps right over the lazy dog.The quick brown fox jumps right over the lazy dog.The quick brown fox jumps right over the lazy dog.The quick brown fox jumps right over the lazy dog.The quick brown fox jumps right over the lazy dog.The quick brown fox jumps right over the lazy dog.The quick brown fox jumps right over the lazy dog.</p>",
                Artists         = new Artist[]
                {
                    new Artist()
                    {
                        Name = "Dan Slott", Role = "Script"
                    },
                    new Artist()
                    {
                        Name = "Humberto Ramos", Role = "Pencils"
                    },
                    new Artist()
                    {
                        Name = "Victor Olazaba", Role = "Inks"
                    },
                    new Artist()
                    {
                        Name = "Edgar Delgado", Role = "Colors"
                    },
                    new Artist()
                    {
                        Name = "Chris Eliopoulos", Role = "Letters"
                    }
                }
            };

            return(View(commicBook));
        }
        public CommicBook GetComicBook(int id)
        {
            CommicBook comicBookToReturn = null;

            foreach (var comicBook in _comicBooks)
            {
                if (comicBook.Id == id)
                {
                    comicBookToReturn = comicBook;

                    break;
                }
            }

            return(comicBookToReturn);
        }