public static List <TipoEvento> ListarTipoEvento(int pintIdIdioma) { string strConectionString = ConfigurationManager.ConnectionStrings["BradescoRI"].ConnectionString; SqlConnection objConexao = new SqlConnection(strConectionString); SqlCommand objComando = new SqlCommand("SPE_L_TIPO_EVENTO"); objComando.Connection = objConexao; objComando.CommandType = CommandType.StoredProcedure; ///Parametros objComando.Parameters.Add("@idiomaId", SqlDbType.Int).Value = pintIdIdioma; try { //Abre Conexao objConexao.Open(); //Declara variavel de retorno List <TipoEvento> objList = new List <TipoEvento>(); TipoEvento obj = default(TipoEvento); IDataReader idrReader = default(IDataReader); idrReader = objComando.ExecuteReader(); while ((idrReader.Read())) { obj = new TipoEvento(); obj.FromIDataReader(idrReader); objList.Add(obj); } return(objList); } catch (Exception ex) { throw ex; } finally { //Fecha a conexao se aberta if (objConexao.State != ConnectionState.Closed) { objConexao.Close(); } } }
public static TipoEvento ObterTipo(int pintId) { string strConectionString = ConfigurationManager.ConnectionStrings["BradescoRI"].ConnectionString; SqlConnection objConexao = new SqlConnection(strConectionString); SqlCommand objComando = new SqlCommand("SPE_L_TIPO_EVENTO_ID"); objComando.Connection = objConexao; objComando.CommandType = CommandType.StoredProcedure; objComando.Parameters.Add("@tipoEventoId", SqlDbType.Int).Value = pintId; try { objConexao.Open(); TipoEvento obj = new TipoEvento(); IDataReader idrReader = default(IDataReader); idrReader = objComando.ExecuteReader(); while ((idrReader.Read())) { obj.FromIDataReader(idrReader); } return(obj); } catch (Exception ex) { throw ex; } finally { //Fecha a conexao se aberta if (objConexao.State != ConnectionState.Closed) { objConexao.Close(); } } }