order.setOrderNr("123456789");
order.setDeliveryAddress("deliveryAddress");
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");