public ActionResult CreateTelefono(Telefonox TelefonoToCreate) { try { _entities.AddToTelefono(TelefonoToCreate); _entities.SaveChanges(); return(RedirectToAction("GetAllTelefono")); } catch { return(View()); } }