Ejemplo n.º 1
0
 public ActionResult Edit(int id)
 {
     IProfileDAC dac = new ProfileDAC();
     var profile = dac.GetProfile(id);
     var model = new ProfileEdit { ProfileID = profile.ProfileID, Name = profile.Name, ProfileText = profile.ProfileText, SortOrder = profile.SortOrder };
     return View(model);
 }
Ejemplo n.º 2
0
 public ActionResult Edit(ProfileEdit profile)
 {
     if (!ModelState.IsValid)
         return View(profile);
     IProfileDAC dac = new ProfileDAC();
     dac.Update(profile.ProfileID, profile.Name, profile.ProfileText, profile.SortOrder);
     return RedirectToAction("Index");
 }