public AcUspsInternationalSupply getUspsInternationalSupply(Integer id) { AcAccountServiceRegistryIF registry = newRegistry(); try { return registry.getUspsInternationalSupplyService().getUspsInternationalSupply(id); } finally { registry.releaseAll(); } }
public JwList<AcUspsInternationalSupply> getAllAvailable() { AcAccountServiceRegistryIF registry = newRegistry(); try { return registry.getUspsInternationalSupplyService().getAllAvailable(); } finally { registry.releaseAll(); } }
public boolean uspsInternationalSupplyExists(AcUspsInternationalSupplyPkIF pk) { AcAccountServiceRegistryIF registry = newRegistry(); try { return registry.getUspsInternationalSupplyService().uspsInternationalSupplyExists(pk); } finally { registry.releaseAll(); } }
public void delete(Integer id) { AcAccountServiceRegistryIF registry = newRegistry(); try { registry.getUspsInternationalSupplyService().delete(id); } finally { registry.releaseAll(); } }
public void update(AcUspsInternationalSupply uspsInternationalSupply) { AcAccountServiceRegistryIF registry = newRegistry(); try { registry.getUspsInternationalSupplyService().update(uspsInternationalSupply); } finally { registry.releaseAll(); } }
public Integer insert(AcUspsInternationalSupply uspsInternationalSupply) { AcAccountServiceRegistryIF registry = newRegistry(); try { return registry.getUspsInternationalSupplyService().insert(uspsInternationalSupply); } finally { registry.releaseAll(); } }
public JwList<AcUspsInternationalSupply> getAllWhere(String whereClause, Integer rowLimit) { AcAccountServiceRegistryIF registry = newRegistry(); try { return registry.getUspsInternationalSupplyService().getAllWhere(whereClause, rowLimit); } finally { registry.releaseAll(); } }
public AcUspsInternationalSupply getUspsInternationalSupplyByWebKey(String webKey) { AcAccountServiceRegistryIF registry = newRegistry(); try { return registry .getUspsInternationalSupplyService() .getUspsInternationalSupplyByWebKey(webKey); } finally { registry.releaseAll(); } }
public JwList<AcUspsInternationalSupply> getAllByEffectiveDates( JwDate effectiveStartDt, JwDate effectiveEndDt) { AcAccountServiceRegistryIF registry = newRegistry(); try { return registry .getUspsInternationalSupplyService() .getAllByEffectiveDates(effectiveStartDt, effectiveEndDt); } finally { registry.releaseAll(); } }