Exemple #1
0
        public IActionResult HistoricoDoAluno(Guid id)
        {
            var tarefaHistoryData = _alunoAppService.GetAllHistory(id);

            return(Response <IEnumerable <AlunoHistoryData> >(tarefaHistoryData));
        }