public void InsertarTBCATPromotor(TBCATPromotor entidad) { try { //Obtener DbCommand para ejcutar el Store Procedure using (DbCommand com = db.GetStoredProcCommand("NombreDelStrore")) { //Parametros //db.AddInParameter(com, "@Parametro", DbType.Tipo, entidad.Atributo); //Ejecucion de la Consulta db.ExecuteNonQuery(com); //Cierre de la conexion y liberacion de memoria com.Dispose(); } } catch (Exception ex) { throw ex; } }
public TBCATPromotor ObtenerTBCATPromotor() { TBCATPromotor resultado = null; try { //Obtener DbCommand para ejcutar el Store Procedure using (DbCommand com = db.GetStoredProcCommand("NombreDelStrore")) { //Parametros //db.AddInParameter(com, "@Parametro", DbType.Tipo, entidad.Atributo); //Ejecucion de la Consulta using (IDataReader reader = db.ExecuteReader(com)) { if (reader != null) { resultado = new TBCATPromotor(); //Lectura de los datos del ResultSet } reader.Dispose(); } //Cierre de la conexion y liberacion de memoria com.Dispose(); } } catch (Exception ex) { throw ex; } return resultado; }
public List<TBCATPromotor> ObtenerTBCATPromotor(int Accion, int Sucursal) { List<TBCATPromotor> resultado = null; try { //Obtener DbCommand para ejcutar el Store Procedure using (DbCommand com = db.GetStoredProcCommand("catalogo.sel_promotor")) { //Parametros db.AddInParameter(com, "@Accion", DbType.Int32, Accion); db.AddInParameter(com, "@idSucursal", DbType.Int32, Sucursal); //Ejecucion de la Consulta using (IDataReader reader = db.ExecuteReader(com)) { if (reader != null) { resultado = new List<TBCATPromotor>(); //Lectura de los datos del ResultSet while (reader.Read()) { TBCATPromotor promotor = new TBCATPromotor(); if (!reader.IsDBNull(0)) promotor.IdPromotor = Convert.ToInt32(reader[0]); if (!reader.IsDBNull(1)) promotor.Promotor = reader[1].ToString(); resultado.Add(promotor); } } reader.Dispose(); } //Cierre de la conexion y liberacion de memoria com.Dispose(); } } catch (Exception ex) { throw ex; } return resultado; }
public static void InsertarTBCATPromotor(TBCATPromotor entidad) { dal.InsertarTBCATPromotor(entidad); }