def getOrderByID(self, order_id):
     return Order(self.orderRepository.getOrderByID(order_id))
 def getOrdersByCustomer(self, customer_id):
     return [ Order(orderInfo) for orderInfo in self.orderRepository.getOrdersByCustomer(customer_id) ]