public ActionResult Create(Empresa cliente) { try { var user = User.Identity.Name; BLLEmpresa bllempresa = new BLLEmpresa(); bllempresa.CreateCliente(cliente, user); return(RedirectToAction("Index")); } catch { return(View()); } }