public FichaIngresoCompleta()
        {
            FichaIngreso = new FichasIngresosInfo();

            CargasFamiliares = new List <DetalleCargasFamiliaresInfo>();
            Experiencias     = new List <DetalleExperienciasInfo>();
            Estudios         = new List <DetalleEstudiosInfo>();
            DatosIngreso     = new IngresosInfo();
        }
        public FichaIngresoCompleta(FichasIngresosInfo _FichaIngreso, List <DetalleCargasFamiliaresInfo> _DetalleCargasFamiliares
                                    , List <DetalleEstudiosInfo> _DetalleEstudios, List <DetalleExperienciasInfo> _DetalleExperiencias, IngresosInfo _DatosIngreso)
        {
            FichaIngreso = _FichaIngreso;

            CargasFamiliares = _DetalleCargasFamiliares;
            Experiencias     = _DetalleExperiencias;
            Estudios         = _DetalleEstudios;
            DatosIngreso     = _DatosIngreso;
        }