diff --git a/WebAPI/Controllers/LayersController.cs b/WebAPI/Controllers/LayersController.cs index c7d920c..5d1547f 100644 --- a/WebAPI/Controllers/LayersController.cs +++ b/WebAPI/Controllers/LayersController.cs @@ -251,8 +251,8 @@ namespace WebAPI.Controllers switch (processType) { case "Copy": - //CopyProcessor cp = new CopyProcessor(db, googleSheetValues, this); - //cp.process(sourceLayer, processWorker?.Id); + CopyProcessor cp = new CopyProcessor(db, googleSheetValues, this); + cp.process(sourceLayer, processWorker?.Id); break; case "Deaggregation": DeaggregationProcessor dp = new DeaggregationProcessor(db, googleSheetValues, this);