Beispiel #1
0
 // PUT: api/PJ/5
 public void Put(int id, [FromBody] B_PJ value)
 {
     pjService.Update(id, value);
 }
Beispiel #2
0
 public bool Update(int id, H_PJ entity)
 {
     return(pJService.Update(id, (Mapper <H_PJ, B_PJ> .Map(entity))));
 }
Beispiel #3
0
 public bool Update(int id, H_PJ entity)
 {
     return(pJService.Update(id, entity.ToBusiness()));
 }