public IHttpActionResult Get(string id)
        {
            var part = _partsService.GetByItemNumber(id);

            return(Ok(part));
        }