Ejemplo n.º 1
0
        public static System.Collections.ArrayList getListaFascicoliInScarto(DocsPaVO.utente.InfoUtente infoUtente,
                                                                             DocsPaVO.AreaScarto.InfoScarto infoScarto,
                                                                             int numPage, out int numTotPage,
                                                                             out int nRec)
        {
            numTotPage = 0;
            nRec       = 0;
            DocsPaDB.Query_DocsPAWS.Fascicoli fascicoli = new DocsPaDB.Query_DocsPAWS.Fascicoli();

            ArrayList result = fascicoli.GetListaFascicoliInScarto(infoUtente, infoScarto, numPage, out numTotPage, out nRec);

            if (result == null)
            {
                logger.Debug("Errore nella gestione dei fascicoli. (getListaFascicoliInScarto)");
                throw new Exception("F_System");
            }
            return(result);
        }