The below link shows how to creat ApiController.
http://www.asp.net/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api
So how we can create a new method in controller with different paramaeter.
Something like this.
public bool SaveIttoDB(string name, string email, DateTime dob, int id)
{
// code here
}
How we can access this method using URL?
Can anubody help me on this.