Exemplo n.º 1
0
        public static DocsPaVO.utente.Registro getRegistroByCode(string codiceRegistro)
        {
            DocsPaVO.utente.Registro reg = null;

            if (!string.IsNullOrEmpty(codiceRegistro))
            {
                DocsPaDB.Query_DocsPAWS.Utenti utenti = new DocsPaDB.Query_DocsPAWS.Utenti();
                utenti.GetRegistroByCodice(codiceRegistro, ref reg);
            }

            return(reg);
        }