Example #1
0
 // POST: api/PJ
 public void Post([FromBody] B_PJ value)
 {
     pjService.Insert(value);
 }
Example #2
0
 public H_PJ Insert(H_PJ entity)
 {
     return(Mapper <B_PJ, H_PJ> .Map(pJService.Insert(Mapper <H_PJ, B_PJ> .Map(entity))));
 }
Example #3
0
 public H_PJ Insert(H_PJ entity)
 {
     return(pJService.Insert(entity.ToBusiness()).ToHelper());
 }