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