Beispiel #1
0
        public void Remover(int id)
        {
            PagamentoDatabase db = new PagamentoDatabase();

            db.Remover(id);
        }
Beispiel #2
0
        public List <PagamentoDTO> Listar()
        {
            PagamentoDatabase db = new PagamentoDatabase();

            return(db.Listar());
        }
Beispiel #3
0
        public int Salvar(PagamentoDTO dto)
        {
            PagamentoDatabase db = new PagamentoDatabase();

            return(db.Salvar(dto));
        }