I am very new to service stack. Just create a very sample demo rightnow.
I have passed the Object of class when posting the data. My question is How service stack handles the Object when Posting the request.i.e. JSON/XML etc.
JsonServiceClient client = new JsonServiceClient("http://localhost/RestIntro");
Customer c = new Customer();
c.Name = "Amit patel";
c.Age = 30;
c.Email = "aa";
var res = client.Post<Customer>("/customers", c);
How does this c (Object of Customer) handles when transferring the data?