Ejemplo n.º 1
0
 public ActionResult <string> CreateBox([FromBody] Box box)
 {
     box = _boxRepository.CreateBox(box);
     return(Json(box));
 }