[OperationContract]
[FaultContract(typeof(DbFaultContract))]
[FaultContract(typeof(ValidationFaultContract))]
[FaultContract(typeof(OrderNotFoundContract))]
[SwaggerWcfTag("Orders", false)]
[SwaggerWcfPath(null, null, null, null, null, false, null, Summary = "Get the details of an ordered kit", Description = "Returns the ordered kit details for the provided order number if it exists.")]
[WebGet(UriTemplate = "/{orderNumber}/KitDetails", 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 orderNumber", Type = typeof(JsonErrorMessage))]
OrderedKitInfoContract GetKitDetails(string orderNumber)