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

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