Exemplo n.º 1
0
 public ActionResult Post([FromBody] IngresoServicio ingresoServicio)
 {
     return(Ok(
                ingresoServicioService.Save(ingresoServicio)
                ));
 }
Exemplo n.º 2
0
 public ActionResult Put([FromBody] IngresoServicio ingresoServicio)
 {
     return(Ok(
                ingresoServicioService.Update(ingresoServicio)
                ));
 }
Exemplo n.º 3
0
 public bool Update(IngresoServicio entity)
 {
     throw new System.NotImplementedException();
 }