list of assessments #85
@ -1,11 +1,11 @@
|
||||
package ru.ulstu.extractor.recommendation.controller;
|
||||
package ru.ulstu.extractor.assessment.controller;
|
||||
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.ui.Model;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
import ru.ulstu.extractor.assessment.model.FilterBranchForm;
|
||||
import ru.ulstu.extractor.branch.service.BranchService;
|
||||
import ru.ulstu.extractor.recommendation.model.FilterBranchForm;
|
||||
import ru.ulstu.extractor.rule.service.FuzzyInferenceService;
|
||||
import springfox.documentation.annotations.ApiIgnore;
|
||||
|
||||
@ -15,12 +15,12 @@ import static ru.ulstu.extractor.core.Route.ASSESSMENTS;
|
||||
|
||||
@Controller
|
||||
@ApiIgnore
|
||||
public class RecommendationController {
|
||||
public class AssessmentController {
|
||||
private final FuzzyInferenceService fuzzyInferenceService;
|
||||
private final BranchService branchService;
|
||||
|
||||
public RecommendationController(FuzzyInferenceService fuzzyInferenceService,
|
||||
BranchService branchService) {
|
||||
public AssessmentController(FuzzyInferenceService fuzzyInferenceService,
|
||||
BranchService branchService) {
|
||||
this.fuzzyInferenceService = fuzzyInferenceService;
|
||||
this.branchService = branchService;
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
package ru.ulstu.extractor.recommendation.model;
|
||||
package ru.ulstu.extractor.assessment.model;
|
||||
|
||||
import ru.ulstu.extractor.ts.model.TimeSeriesType;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package ru.ulstu.extractor.recommendation.model;
|
||||
package ru.ulstu.extractor.assessment.model;
|
||||
|
||||
public class FilterBranchForm {
|
||||
private Integer branchId;
|
Loading…
Reference in New Issue
Block a user