add PointCloudInfo Controller

This commit is contained in:
Tim Wundenberg
2021-07-30 20:31:27 +02:00
parent f27628c57d
commit 8bef0824ce
13 changed files with 122 additions and 25 deletions

View File

@@ -18,7 +18,7 @@ namespace PointCloudWeb.Server.Controllers
this.pointCloudService = pointCloudService;
}
private PointCloudDto ConvertPointCloudToDto(PointCloud pc) => new PointCloudDto(pc.Id, pc.Name, pc.TransformedPoints);
private PointCloudDto ConvertPointCloudToDto(PointCloud pc) => new PointCloudDto(pc.Id, pc.TransformedPoints);
[HttpGet]
public IList<PointCloudDto> GetAll()