Exemplo n.º 1
0
        public async Task <IActionResult> DeleteAluno([FromRoute] Guid alunoId)
        {
            await _alunoService.DeleteByIdAsync(alunoId);

            return(NoContent());
        }