public ActionResult Create(Monster model)
        {
            monsterService = new MonsterService();
            var chk = monsterService.Add(model);

            if (chk)
            {
                return(RedirectToAction("Index"));
            }
            else
            {
                return(HttpNotFound());
            }
        }