Customer customerObj = new Customer();
customerObj.setCPR(CPR);
customerObj.setFirtName(firstName);
customerObj.setLastName(lastName);
customerObj.setAddress(address);
customerObj.setCity(new City(zipcode));
customerObj.setPhoneNumber(phoneNumber);
DBConnection.startTransaction();
try{