CamelCaseJsonFormatterSample.Controllers.CarController.Put C# (CSharp) 메소드

Put() 공개 메소드

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