Example #1
0
 public Car(CarCreateViewModel model)
 {
     this.Wheel = model.Wheel;
     this.Color = model.Color;
 }
        public IHttpActionResult Create(CarCreateViewModel model)
        {
            var car = new Car(model);

            return this.Ok(model);
        }