コード例 #1
0
 public List<CSolicitudes> select_All_CSolicitudes(int intFolio,
                                                   string strCod_CLi,
                                                   int intCodTipoSolicitud,
                                                   string strCodCarrera,
                                                   int intCodEstado,
                                                   DateTime dtmFechaSolicitud,
                                                   DateTime dtmFechaSolicitudHasta,
                                                   DateTime dtmFechaResolucion,
                                                   DateTime dtmFechaResolucionHasta,
                                                   string strJornada,
                                                   string strOrigen
                                                                   )
 {
     DatosCSolicitudes DatCSolicitudes = new DatosCSolicitudes();
     return DatCSolicitudes.select_All_DatCSolicitudes(intFolio,
                                                       strCod_CLi,
                                                       intCodTipoSolicitud,
                                                       strCodCarrera,
                                                       intCodEstado,
                                                       dtmFechaSolicitud,
                                                       dtmFechaSolicitudHasta,
                                                       dtmFechaResolucion,
                                                       dtmFechaResolucionHasta,
                                                       strJornada,
                                                       strOrigen);
 }
コード例 #2
0
        public List<CSolicitudes> ConsultaDetAct(int intTipoSolicitud,
                                                       int intTipoActividad,
                                                       int intEstado,
                                                       int intCodUnidad,
                                                       DateTime dtmFechaRecepDesde,
                                                       DateTime dtmFechaRecepHasta,
                                                       DateTime dtmFechaEjecDesde,
                                                       DateTime dtmFechaEjecHasta,
                                                       DateTime dtmFechaResolDesde,
                                                       DateTime dtmFechaResolHasta)
        {
            DatosCSolicitudes ConsultaDetalleActividad = new DatosCSolicitudes();

            return ConsultaDetalleActividad.select_All_CDinamicaDetSol(intTipoSolicitud, intTipoActividad, intEstado, intCodUnidad, dtmFechaRecepDesde, dtmFechaRecepHasta,
                                                                      dtmFechaEjecDesde, dtmFechaEjecHasta, dtmFechaResolDesde, dtmFechaResolHasta);
        }