Se modifican el servicio de eliminar de ServiceUzyTavOpcionInstitucion

parent e15b8786
......@@ -13,6 +13,6 @@ public interface IServiceUzyTavOpcionInstitucion {
DtoUzyTavOpcionInstitucion editar( Long id, DtoUzyTavOpcionInstitucion dtoUzyTavOpcionInstitucion);
void eliminar(Long id);
boolean eliminar(Long id);
}
......@@ -76,9 +76,14 @@ public class ServiceUzyTavOpcionInstitucion implements IServiceUzyTavOpcionInsti
}
}
@Override
public void eliminar(Long id) {
ModelUzyTavOpcionInstitucion dato = daoUzyTavOpcionInstitucion.findById(id).get();
daoUzyTavOpcionInstitucion.delete(dato);
public boolean eliminar(Long id) {
ModelUzyTavOpcionInstitucion entity = daoUzyTavOpcionInstitucion.findById(id).orElse(null);
if (entity != null) {
daoUzyTavOpcionInstitucion.delete(entity);
return true;
}
return false;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment