public ContenedorHabitacion LlamarSPActualizar(ContenedorHabitacion aHabitacion) { if (ValidarFecExp(aHabitacion.Retorno.Token)) { var p_OUT_CODRET = new ObjectParameter("P_OUT_CODRET", typeof(decimal)); var p_OUT_GLSRET = new ObjectParameter("P_OUT_GLSRET", typeof(string)); CapaDato.EntitiesBBDDHostel conex = new CapaDato.EntitiesBBDDHostel(); conex.SP_ACTUALIZAR_HABITACION (aHabitacion.Item.Codigo , aHabitacion.Item.Estado , aHabitacion.Item.Capacidad , aHabitacion.Item.Descripcion , aHabitacion.Item.Precio , p_OUT_CODRET , p_OUT_GLSRET ); try { aHabitacion.Retorno.Codigo = decimal.Parse(p_OUT_CODRET.Value.ToString()); aHabitacion.Retorno.Glosa = p_OUT_GLSRET.Value.ToString(); } catch (Exception) { aHabitacion.Retorno.Codigo = 1011; aHabitacion.Retorno.Glosa = "Err codret ORACLE"; } } else { aHabitacion.Retorno.Codigo = 100; aHabitacion.Retorno.Glosa = "Err expiro sesion o perfil invalido"; } return(aHabitacion); }