Example #1
0
        public TestEntitty Update(string name, [FromBody] TestEntitty testEntitty)
        {
            testEntitty.Name = name;

            return(testEntitty);
        }
Example #2
0
 public JsonResult Insert([FromForm] TestEntitty testEntitty)
 {
     return(Json(testEntitty.ToString()));
 }
Example #3
0
 public TestEntitty Insert([FromBody] TestEntitty testEntitty)
 {
     return(testEntitty);
 }