backend/buisnesslogic/src/main/java/com/plannaplan/services/AssignmentService.java

19 lines
455 B
Java
Raw Normal View History

2020-07-25 10:38:19 +02:00
package com.plannaplan.services;
import com.plannaplan.interfaces.EventCreator;
import com.plannaplan.repositories.AssignmentRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class AssignmentService implements EventCreator {
@Autowired
AssignmentRepository repo;
@Override
public void update() {
// TODO Auto-generated method stub
}
}