Exemplo n.º 1
0
 // POST: api/PJ
 public void Post([FromBody] B_PJ value)
 {
     pjService.Insert(value);
 }
Exemplo n.º 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))));
 }
Exemplo n.º 3
0
 public H_PJ Insert(H_PJ entity)
 {
     return(pJService.Insert(entity.ToBusiness()).ToHelper());
 }