[OperationContract]
[FaultContract(typeof(DbFaultContract))]
[SwaggerWcfTag("Orders", false)]
[SwaggerWcfPath(null, null, null, null, null, false, null, Summary = "Retrieves the list of end-client orders found in provided list of lot numbers.", Description = "This result contains minimal information about the order, including the product references, description and expiration date.")]
[WebGet(UriTemplate = "/Customer/External/FindOrders?orderNumbers={orderNumbers}", ResponseFormat = WebMessageFormat.Json)]
[SwaggerWcfResponse(StatusCode = HttpStatusCode.OK, Description = "Success")]
[SwaggerWcfResponse(StatusCode = HttpStatusCode.InternalServerError, Description = "An unexpected error occurred while processing the request.", Type = typeof(JsonErrorMessage))]
[SwaggerWcfResponse(StatusCode = HttpStatusCode.BadRequest, Description = "Fault exception", Type = typeof(JsonErrorMessage))]
EndClientOrderInfoContract[] GetEndClientOrders(LotNumbersContract orderNumbers)