コード例 #1
0
        public async Task <IActionResult> DeletaPagamento(int id)
        {
            int retorno = _AlunoService.PesquisaPagamento(id);
            await _AlunoService.DeletaPagamentoAsync(id);

            var obj = await _AlunoService.FindByIdAsync(retorno);

            return(View(obj));
        }