added links to documents to time track list

This commit is contained in:
2025-09-02 20:57:16 +02:00
parent fe5f2d65c7
commit dbe7e51b7d
9 changed files with 59 additions and 14 deletions

View File

@@ -4,7 +4,10 @@ package de.srsoftware.umbrella.core.api;
import de.srsoftware.umbrella.core.exceptions.UmbrellaException;
import de.srsoftware.umbrella.core.model.Document;
import java.util.Map;
import java.util.Set;
public interface DocumentService {
Map<Long, Map<Long, String>> docsReferencedByTimes(Set<Long> timeIds) throws UmbrellaException;
Map<Long, Document> list(long companyId) throws UmbrellaException;
}