Esempio n. 1
0
 /** @return Returns the containerTypes. */
 public List getContainerTypes() {
   if (containerTypes == null || refresh == true) {
     containerTypes = containerTypeDAO.getContainerTypes();
     refresh = false;
   }
   return containerTypes;
 }
Esempio n. 2
0
 public ContainerType getContainerType(Integer ContainerTypeID) {
   return containerTypeDAO.getContainerType(ContainerTypeID);
 }
Esempio n. 3
0
 public void saveContainerType(ContainerType stock) throws Exception {
   containerTypeDAO.saveContainerType(stock);
   refresh = true;
 }
Esempio n. 4
0
 /** ****End Location */
 public ContainerType getContainerType(String name) {
   return containerTypeDAO.getContainerType(name);
 }