public ActionResult Create(Cliente collection) { try { var _repo = new ClienteRepositorio(); _repo.AddEmployee(collection); return(RedirectToAction("Index")); } catch { return(View()); } }