ManufacturerDto mitsubishi = new ManufacturerDto("Mitsubishi");
honda = Manufacturer.createDto(manufacturerDao.put(Manufacturer.create(honda)));
mitsubishi = Manufacturer.createDto(manufacturerDao.put(Manufacturer.create(mitsubishi)));
CarPropertiesDto carPropertiesCivic = new CarPropertiesDto("Cat", 0, new Date());
carPropertiesCivic = carPropertiesDao.put(carPropertiesCivic);
CarPropertiesDto carPropertiesAccord = new CarPropertiesDto("Fish", 1, new Date());
carPropertiesAccord = carPropertiesDao.put(carPropertiesAccord);
CarPropertiesDto carPropertiesLancer = new CarPropertiesDto("Dog", 2, new Date());
carPropertiesLancer = carPropertiesDao.put(carPropertiesLancer);
CarPropertiesDto carPropertiesMitsubishi = new CarPropertiesDto("Cow", 3, new Date());
carPropertiesMitsubishi = carPropertiesDao.put(carPropertiesMitsubishi);
CarDto civic = new CarDto("Civic", honda, carPropertiesCivic);
CarDto accord = new CarDto("Accord", honda, carPropertiesAccord);
CarDto lancer = new CarDto("Lancer", mitsubishi, carPropertiesLancer);