Skip to content

Instantly share code, notes, and snippets.

@heymichaelp
Created July 1, 2014 02:22
Show Gist options
  • Save heymichaelp/37d529ce74dc0c2baea0 to your computer and use it in GitHub Desktop.
Save heymichaelp/37d529ce74dc0c2baea0 to your computer and use it in GitHub Desktop.
View Objects: Example Implementation
new CurrentStudentsWithAssignmentsQuery().run()
.then(function( students ) {
return new StudentGradeReportPresenter( students ).present();
})
.then(function( students ) {
res.render('reportCard', students);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment