public BaseRetornoDTO <bool> Delete(int id) { BaseRetornoDTO <bool> retornoDTO = new BaseRetornoDTO <bool>(); BaseExceptionSystem <bool> .BaseHandleExcetion(() => { _bancoRepository.Delete(id); retornoDTO.Value = true; }, MensagemSistema.FormataMensagem(MensagemSistema.Excluir, MensagemSistema.Banco), ref retornoDTO); return(retornoDTO); }
public bool Delete(int id) { return(bancoRepository.Delete(id)); }