Ejemplo n.º 1
0
 public IActionResult Create([Bind("Id,Name")] Customer customer)
 {
     if (ModelState.IsValid)
     {
         _service.AddCustomer(customer);
         return(RedirectToAction(nameof(Index)));
     }
     return(View(customer));
 }