manipulate slots

This commit is contained in:
Jottyfan
2023-11-18 19:29:35 +01:00
parent 0c18b2df56
commit 48525b7e20
20 changed files with 331 additions and 558 deletions

View File

@ -5,7 +5,7 @@ import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import de.jottyfan.bico.modules.sheet.model.SheetBean;
import de.jottyfan.bico.db.tables.records.VCalendarRecord;
/**
*
@ -18,7 +18,7 @@ public class SheetService {
@Autowired
private SheetRepository repository;
public List<SheetBean> getList() {
public List<VCalendarRecord> getList() {
return repository.getList();
}