[OperationContract]
[FaultContract(typeof(DbFaultContract))]
[SwaggerWcfTag("Expeditions", false)]
[SwaggerWcfPath(null, null, null, null, null, false, null, Summary = "Retrieves the list of orders sent as part of the specified expedition.", Description = "This result contains information about the order, including the product references, packaging information, as well as information about the used source.")]
[WebGet(UriTemplate = "/Expedition/{expeditionNumber}/Completed", 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))]
[SwaggerWcfResponse(StatusCode = HttpStatusCode.NotFound, Description = "No match found for provided expeditionNumber", Type = typeof(JsonErrorMessage))]
OrderStateInfoContract[] GetCompletedOrdersForExpedition(string expeditionNumber)