public ActionResult AddCatalog(int authorId, int catalogId)
        {
            Author  author  = Author.Find(authorId);
            Catalog catalog = Catalog.Find(catalogId);

            author.AddCatalog(catalog);
            return(RedirectToAction("Show", new { id = authorId }));
        }