Se modifican el servicio de eliminar de ServiceUzyTavOpcionInstitucion

parent e15b8786
...@@ -13,6 +13,6 @@ public interface IServiceUzyTavOpcionInstitucion { ...@@ -13,6 +13,6 @@ public interface IServiceUzyTavOpcionInstitucion {
DtoUzyTavOpcionInstitucion editar( Long id, DtoUzyTavOpcionInstitucion dtoUzyTavOpcionInstitucion); DtoUzyTavOpcionInstitucion editar( Long id, DtoUzyTavOpcionInstitucion dtoUzyTavOpcionInstitucion);
void eliminar(Long id); boolean eliminar(Long id);
} }
...@@ -76,9 +76,14 @@ public class ServiceUzyTavOpcionInstitucion implements IServiceUzyTavOpcionInsti ...@@ -76,9 +76,14 @@ public class ServiceUzyTavOpcionInstitucion implements IServiceUzyTavOpcionInsti
} }
} }
@Override @Override
public void eliminar(Long id) { public boolean eliminar(Long id) {
ModelUzyTavOpcionInstitucion dato = daoUzyTavOpcionInstitucion.findById(id).get(); ModelUzyTavOpcionInstitucion entity = daoUzyTavOpcionInstitucion.findById(id).orElse(null);
daoUzyTavOpcionInstitucion.delete(dato); 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