This commit is contained in:
Jottyfan
2023-09-09 23:15:47 +02:00
parent bd081ff48a
commit e991c26c13
27 changed files with 909 additions and 0 deletions

View File

@ -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();
}
}