Beispiel #1
0
 // PUT api/<controller>/5
 public void PutMove(int id, BMoves value)
 {
     moveService.CreateOrUpdate(value);
 }
Beispiel #2
0
 // POST api/<controller>
 public BMoves PostMove(BMoves value)
 {
     return(moveService.CreateOrUpdate(value));
 }