Created
August 19, 2016 14:19
-
-
Save dougrchamberlain/ea235e2c4ec53e6d62ce594ee5954f95 to your computer and use it in GitHub Desktop.
This file contains 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
--old version works | |
<HttpGet> | |
Public Function Find(ByVal planId As Integer, ByVal id As Integer) As StepModel | |
Dim results As StepModel = stepsDAL.GetStep(id) | |
Return results | |
End Function | |
--new version doesn't work | |
<HttpGet> | |
Public Function Find(ByVal planId As Integer, ByVal id As Integer) As StepModel | |
Dim results As StepModel | |
results = stepsDAL.GetStep(id) | |
Return results | |
End Function |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment