/****************CONTENIDO*********************************/
        #region Contenido

        public Contenido ObtenerContenidoXId(int idContenido)
        {
            try
            {
                ContenidoHandler ch = new ContenidoHandler();
                return(ch.ObtenerContenidoXId(idContenido));
            }
            catch (Exception ex)
            {
                throw new FaultException <ProcessExecutionFault>
                          (new ProcessExecutionFault(), ex.Message);
            }
        }