Ejemplo n.º 1
0
        public ActionResult Post([FromBody] UpsertTreeDto upsertTree)
        {
            if (!upsertTree.IsValid)
            {
                return(BadRequest());
            }

            var tree = _treeStorage.CreateTree(upsertTree);

            return(Ok(tree));
        }