Ejemplo n.º 1
0
        public ActionResult Edit(CreationYear cr)
        {
            CreationYear c = myService.GetById(cr.CreationYearID);

            c.Name   = cr.Name;
            c.Active = cr.Active;
            c.Cars   = cr.Cars;
            myService.Update(c);
            myService.Commit();
            return(RedirectToAction("Index"));
        }