public IHttpActionResult PutUpdateDate(string name, int no, [FromBody]DateTime date)
{
//some code here
}
How to pass date through body.
public IHttpActionResult PutUpdateDate(string name, int no, [FromBody]DateTime date)
{
//some code here
}
How to pass date through body.