add nodejs express project with basic navigation

This commit is contained in:
Tim Wundenberg
2021-07-28 11:42:39 +02:00
parent 25f02ed8a5
commit b3ba65db5a
17 changed files with 1167 additions and 4 deletions

View File

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