Ver código fonte

SelectedCensusService (2)

Andrew Grant 7 meses atrás
pai
commit
00c8baac9e

+ 4 - 3
src/main/java/scot/carricksoftware/grants/controllers/census/selectedcensus/SelectedCensusListControllerImpl.java

@@ -15,7 +15,7 @@ import org.springframework.web.bind.annotation.PathVariable;
 import scot.carricksoftware.grants.constants.*;
 import scot.carricksoftware.grants.controllers.ControllerHelper;
 import scot.carricksoftware.grants.controllers.census.censusentry.CensusEntryListController;
-import scot.carricksoftware.grants.services.census.censusentry.CensusEntryService;
+import scot.carricksoftware.grants.services.census.selectedcensus.SelectedCensusService;
 
 import static java.lang.Integer.max;
 
@@ -27,11 +27,11 @@ public class SelectedCensusListControllerImpl implements CensusEntryListControll
 
     private int currentPage = 0;
     private final ControllerHelper controllerHelper;
-    private final CensusEntryService censusEntryService;
+    private final SelectedCensusService censusEntryService;
 
 
     public SelectedCensusListControllerImpl(ControllerHelper controllerHelper,
-                                            CensusEntryService censusEntryService) {
+                                            SelectedCensusService censusEntryService) {
         this.controllerHelper = controllerHelper;
         this.censusEntryService = censusEntryService;
     }
@@ -89,6 +89,7 @@ public class SelectedCensusListControllerImpl implements CensusEntryListControll
     }
 
 
+
     @SuppressWarnings("SameReturnValue")
     @GetMapping(CensusMappingConstants.SELECTED_CENSUS_DELETE)
     @Override