Ejemplo n.º 1
0
 public ActionResult Get(Guid guid)
 {
     try
     {
         return(Ok(_treeStorage.GetTree(guid)));
     }
     catch (NotFoundException e)
     {
         return(NotFound(e));
     }
 }