public void CargarCombo( ref ComboBox combo,string InsertaFila)
 {
     IList ListaDocumentos=GetAll();
     cod_documentos oDocumento=new cod_documentos();
     oDocumento.id_documento = 0;
     oDocumento.documento = InsertaFila;
     ListaDocumentos.Insert(0, oDocumento);
     combo.DataSource = ListaDocumentos;
     combo.DisplayMember = "documento";
     combo.ValueMember = "id_documento";
 }
        public void Update(cod_documentos oDocumento)
        {
            using (cooperativaEntities bd = new cooperativaEntities())
            {
                var editar = (from p in bd.cod_documentos
                              where p.id_documento == oDocumento.id_documento
                              select p).Single();

                editar.documento = oDocumento.documento;
                bd.SaveChanges();
            }
        }
 public cod_documentos Get(int id)
 {
     cod_documentos oDocumento = new cod_documentos();
     using (cooperativaEntities bd = new cooperativaEntities())
     {
         var regis = (from p in bd.cod_documentos
                      where p.id_documento == id
                      select p).Single();
         oDocumento.id_documento = regis.id_documento;
         oDocumento.documento = regis.documento;
         return oDocumento;
     }
 }
        private void Inicializar()
        {
            socios oSocios = new socios();
            SocioImplement oSociosImplement = new SocioImplement();

            socios_lote oSocioLote = new socios_lote();
            SocioLoteImplement oSocioLoteImplement = new SocioLoteImplement();
            oSocioLote = oSocioLoteImplement.Get(_idSocio);

            socios_conexion oSocioConexion = new socios_conexion();
            SocioConexionImplement oSocioConexionImplement = new SocioConexionImplement();
            oSocioConexion = oSocioConexionImplement.Get(_idSocio);

            socios_varios oSocioVarios = new socios_varios();
            SocioVariosImplement oSocioVariosImplement = new SocioVariosImplement();
            oSocioVarios = oSocioVariosImplement.Get(_idSocio);

            oSocios = oSociosImplement.Get(_idSocio);
            txtCodigo.Text = oSocios.codigo_socio;
            txtFechaConvenio.Text = _FechaConvenio.ToShortDateString();
            txtNombre.Text = oSocios.nombre;
            cod_documentos oCodDocumentos = new cod_documentos();
            DocumentoImplement oDocumentosImplement = new DocumentoImplement();
            if(oSocios.tipo_documento!=null)
                txtTipoDocumento.Text = oDocumentosImplement.Get((int)oSocios.tipo_documento).documento;
            txtDocumento.Text = oSocios.documento.ToString();

            CalleImplement oCalleImplement = new CalleImplement();

            BarrioImplement oBarrioImplement = new BarrioImplement();
            LocalidadImplement oLocalidadImplement = new LocalidadImplement();

            if (oSocioConexion.calle!=null & (int)oSocioConexion.calle!=0)
                txtDomicilioReal.Text = oCalleImplement.Get((int)oSocioConexion.calle).calle + " " + oSocioConexion.calle_altura;
            if (oSocioLote.localidad!=null &(int)oSocioLote.localidad != 0)
                txtCiudadReal.Text = oLocalidadImplement.Get((int)oSocioLote.localidad).localidad;
            if (oSocioLote.calle!=null & (int)oSocioLote.calle != 0)
                txtDomicilioLegal.Text = oCalleImplement.Get((int)oSocioLote.calle).calle + " " + oSocioLote.calle_altura;
            if (oSocioLote.localidad!=null & (int)oSocioLote.localidad != 0)
                txtCiudadLegal.Text = oLocalidadImplement.Get((int)oSocioLote.localidad).localidad;
            txtLote.Text = oSocioLote.lote;
            txtManzana.Text = oSocioLote.manzana;
            if (oSocioLote.barrio!=null & (int)oSocioLote.barrio != 0)
                txtBarrio.Text = oBarrioImplement.Get((int)oSocioLote.barrio).barrio;

            txtImporteDeuda.Text = _ImporteDeuda.ToString();
            txtValorCuotas.Text = _ImporteCuota.ToString();
            txtCantidadCuotas.Text = _CantidadCuotas.ToString();
            txtImporteCanonMunicipal.Text = _CanonMunicipal.ToString();

            FacturasImplement oFacturasImplement = new FacturasImplement();
            string sPeriodo = oFacturasImplement.GetUltimoPeriodoFacturadoBySocio(_idSocio);
            int anio = int.Parse(sPeriodo.Substring(0,3));
            int mes = int.Parse(sPeriodo.Substring(4,5));
            DateTime fechaPeriodo = new DateTime(anio, mes, 1);
            DateTime fechaDesde = fechaPeriodo.AddMonths(1);
            DateTime fechaHasta = fechaPeriodo.AddMonths(_CantidadCuotas);
            Meses mesDesde = (Meses)fechaDesde.Month;
            Meses mesHasta = (Meses)fechaHasta.Month;
            txtDesdeMes.Text = mesDesde.ToString();
            txtMesHasta.Text = mesHasta.ToString();
            txtDesdeAnio.Text = fechaDesde.Year.ToString();
            txtAnioHasta.Text = fechaHasta.Year.ToString();
        }
 public void Save(cod_documentos oDocumento)
 {
     cooperativaEntities bd = new cooperativaEntities();
     bd.cod_documentos.AddObject(oDocumento);
     bd.SaveChanges();
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the cod_documentos EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddTocod_documentos(cod_documentos cod_documentos)
 {
     base.AddObject("cod_documentos", cod_documentos);
 }
 /// <summary>
 /// Create a new cod_documentos object.
 /// </summary>
 /// <param name="id_documento">Initial value of the id_documento property.</param>
 public static cod_documentos Createcod_documentos(global::System.Int32 id_documento)
 {
     cod_documentos cod_documentos = new cod_documentos();
     cod_documentos.id_documento = id_documento;
     return cod_documentos;
 }