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

Get() public method

public Get ( int id ) : Car
id int
return CamelCaseJsonFormatterSample.Entities.Car
        public Car Get(int id) {
            return new Car() {
                Id = id,
                Make = "Porsche",
                Model = "911",
                Price = 100000f,
                Year = 2012
            };
        }
CarController