public async Task <ActionResult> Edit(WheelModel model)
        {
            if (ModelState.IsValid)
            {
                WheelDataAccess WheelDataAccess = new WheelDataAccess();
                WheelDataAccess.Update(model);

                return(RedirectToAction("List", "Wheel"));

                //AddErrors(result);
            }

            // If we got this far, something failed, redisplay form
            return(View(model));
        }