Exemple #1
0
        /// <summary>
        /// Lista UO in registro
        /// </summary>
        /// <param name="idRegistro"></param>
        private void AmmGetListUOInReg(string idRegistro, string tipoRicerca, string ricerca)
        {
            ArrayList lista = new ArrayList();

            AmmUtils.WebServiceLink ws = new AmmUtils.WebServiceLink();

            lista = ws.AmmGetListUOInReg(idRegistro, tipoRicerca, ricerca);

            if (lista.Count > 0)
            {
                this._listaUOInReg = new ArrayList(lista);
            }

            lista = null;

            ws = null;
        }