Ejemplo n.º 1
0
        public DsLineasTransportes GetLineasTransportesDataSet()
        {
            DsLineasTransportes ds = new DsLineasTransportes();

            Config.Conexion.LlenarTypeDataSet(ds.Datos, System.Data.CommandType.StoredProcedure, "LineaTransporteALL");
            return(ds);
        }
        public override global::System.Data.DataSet Clone()
        {
            DsLineasTransportes cln = ((DsLineasTransportes)(base.Clone()));

            cln.InitVars();
            cln.SchemaSerializationMode = this.SchemaSerializationMode;
            return(cln);
        }
        public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs)
        {
            DsLineasTransportes ds = new DsLineasTransportes();

            global::System.Xml.Schema.XmlSchemaComplexType type     = new global::System.Xml.Schema.XmlSchemaComplexType();
            global::System.Xml.Schema.XmlSchemaSequence    sequence = new global::System.Xml.Schema.XmlSchemaSequence();
            global::System.Xml.Schema.XmlSchemaAny         any      = new global::System.Xml.Schema.XmlSchemaAny();
            any.Namespace = ds.Namespace;
            sequence.Items.Add(any);
            type.Particle = sequence;
            global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
            if (xs.Contains(dsSchema.TargetNamespace))
            {
                global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
                global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
                try {
                    global::System.Xml.Schema.XmlSchema schema = null;
                    dsSchema.Write(s1);
                    for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext();)
                    {
                        schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
                        s2.SetLength(0);
                        schema.Write(s2);
                        if ((s1.Length == s2.Length))
                        {
                            s1.Position = 0;
                            s2.Position = 0;
                            for (; ((s1.Position != s1.Length) &&
                                    (s1.ReadByte() == s2.ReadByte()));)
                            {
                                ;
                            }
                            if ((s1.Position == s1.Length))
                            {
                                return(type);
                            }
                        }
                    }
                }
                finally {
                    if ((s1 != null))
                    {
                        s1.Close();
                    }
                    if ((s2 != null))
                    {
                        s2.Close();
                    }
                }
            }
            xs.Add(dsSchema);
            return(type);
        }
Ejemplo n.º 4
0
        public DsLineasTransportes GetLineasTransportesCombo()
        {        //devuleve cod + descripcion, para llenar combos
            try
            {
                DsLineasTransportes ds = new DsLineasTransportes();

                Config.Conexion.LlenarTypeDataSet(ds.Datos, System.Data.CommandType.StoredProcedure, "LineaTransportes");
                return(ds);
            }
            catch (Exception e)
            {
                throw e;
            }
        }
Ejemplo n.º 5
0
        public bool ConsultarByID()
        {
            DsLineasTransportes ds = new DsLineasTransportes();
            SqlParameter        pLineaTransporteID = new SqlParameter("@LineaTransporteID", this.LineaTransporteID);

            Config.Conexion.LlenarTypeDataSet(ds.Datos, System.Data.CommandType.StoredProcedure, "LineaTransporteONE", pLineaTransporteID);
            if (ds.Datos.Rows.Count > 0)
            {
                DsLineasTransportes.DatosRow dr = (DsLineasTransportes.DatosRow)ds.Datos.Rows[0];

                this.LineaCodigoSITT        = dr.LineaCodigoSITT;
                this.LineaTransporteDescrip = dr.LineaTransporteDescrip;
                this.LineaEmpresaSITT       = dr.LineaEmpresaSITT;
                this.Baja = dr.Baja;
            }
            return(true);
        }
        private void LlenarComboLineaTransporte()
        {
            try
            {
                ILineaTransporte    linea = LineaTransporteFactory.GetLineaTransporte();
                DsLineasTransportes ds    = linea.GetLineasTransportesCombo();

                ddlLineaTransporte.Items.Clear();
                ddlLineaTransporte.DataTextField  = "LineaCodigoSITT";
                ddlLineaTransporte.DataValueField = "LineaTransporteID";
                ddlLineaTransporte.DataSource     = ds.Datos;
                ddlLineaTransporte.DataBind();
                ddlLineaTransporte.Items.Insert(0, "Todas las Linea de Transporte");
            }
            catch (Exception ex)
            {
                ((ErrorWeb)phErrores.Controls[0]).setMensaje(ex.Message);
            }
        }
Ejemplo n.º 7
0
        public DsLineasTransportes GetLineasTransportes()
        {
            try
            {
                DsLineasTransportes ds = new DsLineasTransportes();
                //agrego parametros
                SqlParameter emp         = new SqlParameter("@LineaEmpresaSITT", Utiles.BaseDatos.StrToSql(LineaEmpresaSITT));
                SqlParameter cod         = new SqlParameter("@LineaCodigoSITT", Utiles.BaseDatos.StrToSql(LineaCodigoSITT));
                SqlParameter desc        = new SqlParameter("@LineaTransporteDescrip", Utiles.BaseDatos.StrToSql(LineaTransporteDescrip));
                SqlParameter unidNegocio = new SqlParameter("@UnidadNegocioID", Utiles.BaseDatos.IntToSql(UnidadNegocioID));

                Config.Conexion.LlenarTypeDataSet(ds.Datos, System.Data.CommandType.StoredProcedure, "LineaTransporteSEL", emp, cod, desc, unidNegocio);
                return(ds);
            }
            catch (Exception e)
            {
                throw e;
            }
        }
Ejemplo n.º 8
0
        public bool Consultar()
        {
            DsLineasTransportes ds = this.GetLineasTransportesDataSet();

            if (ds == null)
            {
                return(false);
            }


            DsLineasTransportes.DatosRow dr = ds.Datos.FindByLineaTransporteID(this.LineaTransporteID);

            if (dr == null)
            {
                return(false);
            }

            this.LineaCodigoSITT        = dr.LineaCodigoSITT;
            this.LineaTransporteDescrip = dr.LineaTransporteDescrip;
            this.LineaEmpresaSITT       = dr.LineaEmpresaSITT;
            this.Baja = dr.Baja;

            return(true);
        }
            public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs)
            {
                global::System.Xml.Schema.XmlSchemaComplexType type     = new global::System.Xml.Schema.XmlSchemaComplexType();
                global::System.Xml.Schema.XmlSchemaSequence    sequence = new global::System.Xml.Schema.XmlSchemaSequence();
                DsLineasTransportes ds = new DsLineasTransportes();

                global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
                any1.Namespace       = "http://www.w3.org/2001/XMLSchema";
                any1.MinOccurs       = new decimal(0);
                any1.MaxOccurs       = decimal.MaxValue;
                any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
                sequence.Items.Add(any1);
                global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
                any2.Namespace       = "urn:schemas-microsoft-com:xml-diffgram-v1";
                any2.MinOccurs       = new decimal(1);
                any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
                sequence.Items.Add(any2);
                global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
                attribute1.Name       = "namespace";
                attribute1.FixedValue = ds.Namespace;
                type.Attributes.Add(attribute1);
                global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
                attribute2.Name       = "tableTypeName";
                attribute2.FixedValue = "DatosDataTable";
                type.Attributes.Add(attribute2);
                type.Particle = sequence;
                global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
                if (xs.Contains(dsSchema.TargetNamespace))
                {
                    global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
                    global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
                    try {
                        global::System.Xml.Schema.XmlSchema schema = null;
                        dsSchema.Write(s1);
                        for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext();)
                        {
                            schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
                            s2.SetLength(0);
                            schema.Write(s2);
                            if ((s1.Length == s2.Length))
                            {
                                s1.Position = 0;
                                s2.Position = 0;
                                for (; ((s1.Position != s1.Length) &&
                                        (s1.ReadByte() == s2.ReadByte()));)
                                {
                                    ;
                                }
                                if ((s1.Position == s1.Length))
                                {
                                    return(type);
                                }
                            }
                        }
                    }
                    finally {
                        if ((s1 != null))
                        {
                            s1.Close();
                        }
                        if ((s2 != null))
                        {
                            s2.Close();
                        }
                    }
                }
                xs.Add(dsSchema);
                return(type);
            }
Ejemplo n.º 10
0
        public DsLineasTransportes GetLineasTransportesConsultaDataSet()
        {
            DsLineasTransportes ds = new DsLineasTransportes();

            return(ds);
        }