public IHttpActionResult GetCarWithType([FromUri] int id)
        {
            var car = db.spGetCarWithTypeByID(id).FirstOrDefault();

            if (car == null)
            {
                return(NotFound());
            }

            return(Ok(car));
        }