Skip to content

Instantly share code, notes, and snippets.

@cyrilCodePro
Last active March 22, 2018 18:27
Show Gist options
  • Save cyrilCodePro/c9f35a15175654c36b406580a51df2fa to your computer and use it in GitHub Desktop.
Save cyrilCodePro/c9f35a15175654c36b406580a51df2fa to your computer and use it in GitHub Desktop.
public class TestController : ApiController
{
[HttpGet]
public IEnumerable<Student> Students()
{
return StudentCrud.GetStudents();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment