Пример #1
0
 public void Remove(int id)
 {
     BeginTransaction();
     _tipoPagamentoService.Delete(id);
     Commit();
 }
Пример #2
0
 public IHttpActionResult Delete(long id)
 {
     _tipoPagamentoService.Delete(id);
     return(Ok());
 }