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