public ActionResult Form(int id = 0)
        {
            Tag model = new Tag();

            if (id > 0)
            {
                model = _tagBusiness.GetEntity(id);
            }

            return(View(model));
        }