public Boolean AlterarStatus(DTOFormaPagamento dtoSelecionado) { if (dtoSelecionado == null) { return(false); } FormaPagamento fpagto = this._repositorio.Obter(dtoSelecionado.ID); fpagto.AlteraStatus(); this._repositorio.Salvar(fpagto); return(true); }