/** * Function used to retrieve the OrderInvestigation Booking VO */ public OrderInvestigationBookingWithStatusVo getOrderInvestigationBooking(OrderInvestigationRefVo investigation) { if (investigation == null || !investigation.getID_OrderInvestigationIsNotNull()) return null; return OrderInvestigationBookingWithStatusVoAssembler.create((OrderInvestigation) getDomainFactory().getDomainObject(OrderInvestigation.class, investigation.getID_OrderInvestigation())); }