Пример #1
0
 public XElement ActualizarTabuladorNivel(int?ID_TABULADOR, string XML_NIVELES, string usuario, string programa)
 {
     using (context = new SistemaSigeinEntities())
     {
         ObjectParameter pout_clave_retorno = new ObjectParameter("XML_RESULTADO", typeof(XElement));
         context.SPE_ACTUALIZA_TABULADOR_NIVEL(pout_clave_retorno, ID_TABULADOR, XML_NIVELES, usuario, programa);
         return(XElement.Parse(pout_clave_retorno.Value.ToString()));
     }
 }