Skip to content

Instantly share code, notes, and snippets.

@cyrilCodePro
Last active March 22, 2018 18:52
Show Gist options
  • Save cyrilCodePro/7b57e3a3496ba838b2c5a92df90a2ad0 to your computer and use it in GitHub Desktop.
Save cyrilCodePro/7b57e3a3496ba838b2c5a92df90a2ad0 to your computer and use it in GitHub Desktop.
////////////
public class StudentViewModel
{
public string name { get; set; }
public int age { get; set; }
}
///////TestPostController
public class TestPostController : ApiController
{
public JObject result(StudentViewModel student)
{
StudentCrud.AddTolist(student.name, student.age);
JObject test = new JObject();
test.Add(StudentCrud.GetStudents());
return test;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment