Пример #1
0
        private void ObtenerFacturasSocio()
        {
            socios         oSocio          = new socios();
            SocioImplement oSocioImplement = new SocioImplement();

            oSocio = oSocioImplement.Get(_idSocio);
            this.mtxtNumero.Text = oSocio.codigo_socio + oSocio.subcodigo_socio;
            this.txtNombre.Text  = oSocio.nombre;
            FacturasImplement oFacturaImplement = new FacturasImplement();

            this.dgFacturar.DataSource = oFacturaImplement.GetByIdSocio(_idSocio);
        }