Exemplo n.º 1
0
 @Override
 public int delete(Bus entity) throws Exception {
   // TODO Auto-generated method stub
   int result = 0;
   result = dao.delete(entity);
   return result;
 }
Exemplo n.º 2
0
 @Override
 public List<Bus> getAll() throws Exception {
   // TODO Auto-generated method stub
   List<Bus> list = new ArrayList<Bus>();
   List<Bus> l = dao.getAll();
   for (int i = 0; i < l.size(); i++) {
     list.add(new Bus(l.get(i).getBusNumber(), l.get(i).getDetails(), l.get(i).getCost()));
   }
   return list;
 }
Exemplo n.º 3
0
 @Override
 public Bus getById(String id) throws Exception {
   // TODO Auto-generated method stub
   List<Bus> list = dao.getAll();
   Bus bus = new Bus();
   for (Bus b : list) {
     if (b.getBusNumber().toString().compareTo(id) == 0) {
       bus = b;
     }
   }
   return bus;
 }