Created
January 25, 2014 09:47
-
-
Save rikkimax/8614133 to your computer and use it in GitHub Desktop.
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
module cmsed.test.routes; | |
import cmsed.test.models.book; | |
import cmsed.base.registration.routes; | |
import cmsed.base.registration.onload; | |
public import cmsed.test.routes.test; | |
shared static this() { | |
registerRoute!Test(); | |
void func(bool isInstall) { | |
Book3 book = new Book3; | |
book.key.isbn = "AS-DF-TF"; | |
book.edition = 8; | |
book.save(); | |
} | |
registerOnLoad(&func); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment