order.setPostalCode("1234");
order.setPostOffice("postOffice");
order.setOrderDate(Calendar.getInstance().getTime());
Customer customer = customerManager.findByCustomerNr(1);
order.setCustomer(customer);
ConstructionType constructionType = constructionTypeManager
.findByName("A1");
order.setConstructionType(constructionType);
productArea = productAreaManager.findByName("Garasje villa");
order.setProductArea(productArea);
orderManager.saveOrder(order);