Exemplo n.º 1
0
 protected AcConsignment getConsignment(Integer id) {
   AcConsignment c = _consignmentMap.get(id);
   if (c == null) {
     c = _access.getConsignmentDb().getConsignment(id);
     _consignmentMap.put(id, c);
   }
   return c;
 }