Added assinment and user

This commit is contained in:
Filip Izydorczyk
2020-07-25 10:38:19 +02:00
parent 3c026115fe
commit 7db0d57a99
7 changed files with 135 additions and 0 deletions

View File

@ -0,0 +1,19 @@
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
}
}

View File

@ -0,0 +1,20 @@
package com.plannaplan.services;
import com.plannaplan.interfaces.EventCreator;
import com.plannaplan.repositories.UserRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class UserService implements EventCreator {
@Autowired
UserRepository repo;
@Override
public void update() {
// TODO Auto-generated method stub
}
}