public int MoverSectores(string idSectorizacion, List <string> sectoresOrigen, int posOrigen, List <string> sectoresDestino, int posDest)
        {
            CD30BD s       = new CD30BD();
            int    retorno = s.MoverSectores(idSectorizacion.Substring(0, idSectorizacion.Length > 8 ? 8 : idSectorizacion.Length), sectoresOrigen, posOrigen, sectoresDestino, posDest);

            s.CloseDB();
            return(retorno);
        }