Esempio n. 1
0
 public boolean update(TransportListVO o) {
   try {
     return this.transportData.update(o.toPO());
   } catch (RemoteException e) {
     e.printStackTrace();
   }
   return false;
 }
Esempio n. 2
0
 public boolean creat(TransportListVO o) {
   TransportListPO newPO = o.toPO();
   try {
     return transportData.add(newPO);
   } catch (RemoteException e) {
     e.printStackTrace();
     return false;
   }
 }