Exemple #1
0
 // GET: Cliente/Delete/5
 public ActionResult Delete(int id)
 {
     _Repository.Excluir(id);
     return(RedirectToAction("Index"));
 }
Exemple #2
0
 public void Excluir(CadastroCliente oCliente)
 {
     _Repository.Excluir(oCliente);
 }