CamelCaseJsonFormatterSample.Controllers.CarController.Put C# (CSharp) Method

Put() public method

public Put ( [ id, Car car ) : Car
id [
car CamelCaseJsonFormatterSample.Entities.Car
return CamelCaseJsonFormatterSample.Entities.Car
        public Car Put([FromUri]int id, Car car) {
            return car;
        }
    }
CarController