private Cathegory getCathegoryByName(Long catId) throws PresentationException {
   Cathegory cathegory = baseDao.getEntity(catId, Cathegory.class);
   if (cathegory == null) {
     throw new PresentationException();
   }
   return cathegory;
 }