public FormatterPerson GetFormatterPerson(int key)
 {
     FormatterPerson obj = new FormatterPerson() { MyGuid = new Guid("f99080c0-2f9e-472e-8c72-1a8ecd9f902d"), PerId = key, Age = 10, Name = "Asha", Order = new FormatterOrder() { OrderName = "FirstOrder", OrderAmount = 235342 } };
     return obj;
 }
 public HttpResponseMessage PostFormatterPerson(FormatterPerson person)
 {
     return Request.CreateResponse(HttpStatusCode.Created, person);
 }
 public HttpResponseMessage PostFormatterPerson(FormatterPerson person)
 {
     return(Request.CreateResponse(HttpStatusCode.Created, person));
 }