Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dougrchamberlain/ea235e2c4ec53e6d62ce594ee5954f95 to your computer and use it in GitHub Desktop.
Save dougrchamberlain/ea235e2c4ec53e6d62ce594ee5954f95 to your computer and use it in GitHub Desktop.
--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