Added last service
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
package com.plannaplan.services;
|
||||
|
||||
import com.plannaplan.interfaces.EventCreator;
|
||||
import com.plannaplan.repositories.TransferRepository;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
@Service
|
||||
public class TransferService implements EventCreator {
|
||||
@Autowired
|
||||
private TransferRepository repo;
|
||||
|
||||
@Override
|
||||
public void update() {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user