public List <DTOEtapa> WCFListarEtapas()
        {
            List <DTOEtapa> grupos   = new List <DTOEtapa>();
            List <Etapa>    upEtapas = Etapa.ListarTodasEtapas();

            foreach (Etapa e in upEtapas)
            {
                DTOEtapa gpo = new DTOEtapa
                {
                    IdEtapa     = e.IdEtapa,
                    Descripcion = e.Descripcion,
                    LapsoMax    = e.LapsoMax,
                    IdTramite   = e.IdTramite
                };
                grupos.Add(gpo);
            }
            return(grupos);
        }