Made Lecturer service to work
This commit is contained in:
@ -1,6 +1,16 @@
|
||||
package com.plannaplan;
|
||||
|
||||
import com.plannaplan.models.ConfigData;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Component
|
||||
public class Controller {
|
||||
|
||||
@Autowired
|
||||
private Configurator configurator;
|
||||
|
||||
public Controller() {
|
||||
}
|
||||
|
||||
@ -22,7 +32,8 @@ public class Controller {
|
||||
public void getHistoryAtPoint() {
|
||||
}
|
||||
|
||||
public void config() {
|
||||
public void config(ConfigData data) {
|
||||
configurator.config(data);
|
||||
}
|
||||
|
||||
public void createTransfer() {
|
||||
|
Reference in New Issue
Block a user