Created
February 15, 2013 22:50
-
-
Save thePunderWoman/4964242 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
context.MapRoute( | |
"v2API2", | |
"v2/{action}/{id}", | |
new { controller = "v2", id = UrlParameter.Optional } | |
); | |
context.MapRoute( | |
"ordersAPI", | |
"orders/{action}/{id}", | |
new { controller = "orders", id = UrlParameter.Optional } | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment