Ejemplo n.º 1
0
        public bool inCache(string docNumber, string versionId, string idAmministrazione)
        {
            bool retval = false;

            try
            {
                DocsPaVO.documento.FileRequest fr = new DocsPaVO.documento.FileRequest();
                fr.versionId = versionId;
                fr.docNumber = docNumber;
                retval       = CacheFileManager.verificaEsistenzaFileInCache(fr, idAmministrazione);
            }
            catch (Exception e)
            {
                logger.Debug("errore nel web method incache errore: " + e.Message);
            }

            return(retval);
        }