Ejemplo n.º 1
0
 public List <VSeleccionLista> Seleccion_Lista()
 {
     try
     {
         var listResult = new LSeleccion().Listar();
         return(listResult);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Ejemplo n.º 2
0
 public bool Seleccion_Guardar(VSeleccion vSeleccion, List <VSeleccion_01> detalle, ref int id, string usuario)
 {
     try
     {
         var result = new LSeleccion().Guardar(vSeleccion, detalle, ref id, usuario);
         return(result);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }