Beispiel #1
0
 public void Put(int id, [FromBody] WGD_Test value)
 {
     value.id = id;
     Context.WGD_Test.Updater.Update(value);
     Context.Save();
 }
Beispiel #2
0
 public void Post([FromBody] WGD_Test value)
 {
     Context.WGD_Test.Inserter.Add(value);
     Context.Save();
 }