[OperationContract]
[FaultContract(typeof(DbFaultContract))]
[SwaggerWcfTag("Expeditions", false)]
[WebGet(UriTemplate = "Packing/{expeditionNumber}", 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 expedition number", Type = typeof(JsonErrorMessage))]
void GetPackingForExpedition(string expeditionNumber)