Exemplo n.º 1
0
 public void Remove(int id)
 {
     BeginTransaction();
     _tipoPagamentoService.Delete(id);
     Commit();
 }
Exemplo n.º 2
0
 public IHttpActionResult Delete(long id)
 {
     _tipoPagamentoService.Delete(id);
     return(Ok());
 }