// Adding the relationship to the database
int newUserRoleGroup = myTools.dataEntry(newRelationship);
//Confirm Group exist by searching its id
// WILL NEED TO ADD LOGIC IN THE FUTURE TO CLEAN THINGS UP IF ONLY ONE IS ADDED AND NOT THE OTHER
boolean groupConfirmed = myTools.dataSearch("Group", "id", newGroupID);
boolean relationshipConfirmed = myTools.dataSearch("UserRoleGroup", "id", newUserRoleGroup);
// If successfully created and it exist in the database return true;
if(groupConfirmed && relationshipConfirmed)
{