public async Task <ActionResult <List <StudentGithubDto> > > GetStudentsGithubsInCourse(int id)
 {
     return(Ok(await _operationInvoker.RunQueryAsync(new GetStudentsGithubQuery(id))));
 }