IUnitTypeDAO unitTypeDAO = Registry.getUnitTypeDAO();
return unitTypeDAO.existsUnitTypeByNameInAnotherTransaction(measure);
}
private boolean isIfExistsTheExistentUnitTypeThisOne() {
IUnitTypeDAO unitTypeDAO = Registry.getUnitTypeDAO();
try {
UnitType unitType = unitTypeDAO
.findUniqueByNameInAnotherTransaction(measure);
return unitType.getId().equals(getId());
} catch (InstanceNotFoundException e) {
return true;
}