Exemplo n.º 1
0
 public IActionResult Create(Service service)
 {
     if (ModelState.IsValid)
     {
         _context.AddService(service);
         return RedirectToAction("Index");
     }
     return View(service);
 }
Exemplo n.º 2
0
 public IActionResult Edit(Service service)
 {
     if (ModelState.IsValid)
     {
         //_context.Update(service);
         //_context.SaveChanges();
         return RedirectToAction("Index");
     }
     return View(service);
 }