public static string SELECT_BY_INFORME_CORRECTOR(long oid_informe_corrector)
        {
            QueryConditions conditions = new QueryConditions()
            {
                InformeCorrector = InformeCorrectorInfo.New()
            };

            conditions.InformeCorrector.Oid = oid_informe_corrector;

            return(AccionCorrectora.SELECT(conditions, true));
        }
Beispiel #2
0
        public static string SELECT_BY_INFORME_CORRECTOR(long oid_informe_corrector, TipoNotificacionAsociado tipo)
        {
            QueryConditions conditions = new QueryConditions()
            {
                InformeCorrector         = InformeCorrectorInfo.New(),
                TipoNotificacionAsociado = tipo
            };

            conditions.InformeCorrector.Oid = oid_informe_corrector;

            return(NotificacionInterna.SELECT(conditions, true));
        }