Created
July 1, 2014 02:22
-
-
Save heymichaelp/37d529ce74dc0c2baea0 to your computer and use it in GitHub Desktop.
View Objects: Example Implementation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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