protected void BindByDataRow(DataRow dr, Salida_transporte_condicion o) { try { int.TryParse(dr["id"].ToString(), out entero); o.Id = entero; entero = 0; if (dr["id_salida"] != DBNull.Value) { int.TryParse(dr["id_salida"].ToString(), out entero); o.Id_salida = entero; entero = 0; } else { o.Id_salida = null; } if (dr["id_transporte_condicion"] != DBNull.Value) { int.TryParse(dr["id_transporte_condicion"].ToString(), out entero); o.Id_transporte_condicion = entero; entero = 0; } if (dr["id_salida_transporte_auditoria"] != DBNull.Value) { int.TryParse(dr["id_salida_transporte_auditoria"].ToString(), out entero); o.Id_salida_transporte_auditoria = entero; entero = 0; } else { o.Id_salida_transporte_auditoria = null; } if (dr["si_no"] != DBNull.Value) { bool.TryParse(dr["si_no"].ToString(), out logica); o.Si_no = logica; logica = false; } } catch { throw; } }
internal void fillLstBySalidaAud() { try { this.comm = GenericDataAccess.CreateCommandSP("sp_Salida_transporte_condicion"); addParameters(6); this.dt = GenericDataAccess.ExecuteSelectCommand(comm); this._lst = new List <Salida_transporte_condicion>(); foreach (DataRow dr in dt.Rows) { Salida_transporte_condicion o = new Salida_transporte_condicion(); BindByDataRow(dr, o); this._lst.Add(o); } } catch { throw; } }
internal void selByIdSalida() { try { this.comm = GenericDataAccess.CreateCommandSP("sp_Salida_transporte_condicion"); addParameters(5); this.dt = GenericDataAccess.ExecuteSelectCommand(comm); this._lst = new List <Salida_transporte_condicion>(); foreach (DataRow dr in dt.Rows) { Salida_transporte_condicion o = new Salida_transporte_condicion(); BindByDataRow(dr, o); o.Condicion = dr["condicion"].ToString(); o.Categoria = dr["categoria"].ToString(); this._lst.Add(o); } } catch { throw; } }
public Salida_transporte_condicionMng() { this._oSalida_transporte_condicion = new Salida_transporte_condicion(); this._lst = new List <Salida_transporte_condicion>(); }