コード例 #1
0
 public boolean getPlaneacionRuta(String usuario, int usuarioCve, String fecha) throws Exception {
   try {
     boolean resul = _objWebServiceDA.getPlaneacionRuta(usuario, usuarioCve, fecha);
     return resul;
   } catch (Exception e) {
     throw e;
   }
 }
コード例 #2
0
 public Usuario getLogin(Usuario objUsuario) throws Exception {
   try {
     Usuario resul = _objWebServiceDA.getLogin(objUsuario);
     return resul;
   } catch (Exception e) {
     throw e;
   }
 }
コード例 #3
0
 public boolean getCatalogos(String usuario) throws Exception {
   try {
     boolean resul = _objWebServiceDA.getCatalogos(usuario);
     return resul;
   } catch (Exception e) {
     throw e;
   }
 }
コード例 #4
0
 public Boolean insertRelacionTipoRiego(String usuario, RutaInspeccion objRutaInspeccion)
     throws Exception {
   try {
     Boolean resul = _objWebServiceDA.insertRelacionTipoRiego(usuario, objRutaInspeccion);
     return resul;
   } catch (Exception e) {
     throw e;
   }
 }