Beispiel #1
0
 public XElement ActualizarComunicadoNoLeido(int ID_COMUNICADO, string ID_EMPLEADO, string pClUsuario, string pNbPrograma)
 {
     using (context = new SistemaSigeinEntities())
     {
         ObjectParameter pOutClRetorno = new ObjectParameter("XML_RESULTADO", typeof(XElement));
         context.SPE_ACTUALIZA_EMPLEADO_COMUNICADO_NO_LEIDO(pOutClRetorno, ID_COMUNICADO, ID_EMPLEADO, pClUsuario, pNbPrograma);
         return(XElement.Parse(pOutClRetorno.Value.ToString()));
     }
 }