private void persist (Service service) throws ADCException {
DataInsertionAndRetrievalManager dataInsertionAndRetrievalManager = new DataInsertionAndRetrievalManager();
try {
dataInsertionAndRetrievalManager.persistService(service);
} catch (PersistenceManagerException e) {
String errorMsg = "Error in persisting Service in PersistenceManager";
log.error(errorMsg, e);
throw new ADCException(errorMsg, e);