/** A list of wear types
  * @access public
  * @return void
  */
 public function weartypesAction()
 {
     $wear = new WearTypes();
     $this->view->wear = $wear->getWearTypesAdmin();
 }
 /** List degrees of wear
  * @access public
  * @return void
  */
 public function degreesofwearAction()
 {
     $wears = new WearTypes();
     $this->view->degrees = $wears->getWearTypesAdmin();
 }