@Test
public void OrderLifecycleTest() {
log.info("Getting car entity and mapping car model.");
CarEntity carEntity = carRepository.findByVehicleRegNo("AB2331");
Car car = DozerHelper.map(carEntity, Car.class);
log.info("Getting customer entity and mapping customer model.");
CustomerEntity customerEntity = customerRepository.findById((long) 9);
Customer customer = DozerHelper.mapAbstract(customerEntity);