initial
This commit is contained in:
@ -0,0 +1,25 @@
|
||||
package de.jottyfan.bico.modules.sheet;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import de.jottyfan.bico.modules.sheet.model.SheetBean;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author jotty
|
||||
*
|
||||
*/
|
||||
@Service
|
||||
public class SheetService {
|
||||
|
||||
@Autowired
|
||||
private SheetRepository repository;
|
||||
|
||||
public List<SheetBean> getList() {
|
||||
return repository.getList();
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user