public ActionResult Detail(int?id)
        {
            if (id == null)
            {
                return(HttpNotFound());
            }
            var comic = _comicRepository.GetComic((int)id);



            //if (DateTime.Today.DayOfWeek == DayOfWeek.Friday)
            //{
            //    return Redirect("/");
            //}
            //ViewBag.SeriesTitle = "";
            //ViewBag.ItemNumber = ;
            //ViewBag.Description = ";
            //ViewBag.Authers = new string[]
            //{
            //    "script : Alpha",
            //    "Pencil : HB Products",
            //    "Ink color : Jeown Library",
            //    "Writer : Nasir Khalil"
            //};

            return(View(comic));
        }