Пример #1
0
 public XElement EliminarConfiguracionNotificado(string pXmlEmpleados)
 {
     using (context = new SistemaSigeinEntities())
     {
         ObjectParameter pOutClRetrno = new ObjectParameter("XML_RESULTADO", typeof(XElement));
         context.SPE_ELIMINA_CONFIGURACION_NOTIFICADO(pOutClRetrno, pXmlEmpleados);
         return(XElement.Parse(pOutClRetrno.Value.ToString()));
     }
 }