Jahresplanimport und Ablgeich von Untis
This commit is contained in:
@@ -143,6 +143,17 @@ public interface IUntisSlotMappingRepository
|
||||
void Save(UntisSlotMapping mapping);
|
||||
void Delete(Guid id);
|
||||
}
|
||||
/// Lokal importierter, rein informativer Schuljahresplan. Bewusst getrennt von WebUntis-
|
||||
/// Stundenplanabweichungen und nicht über den App-Sync repliziert; jedes Gerät bezieht denselben
|
||||
/// externen Feed selbst.
|
||||
public interface IAnnualPlanEventRepository
|
||||
{
|
||||
List<AnnualPlanEvent> GetAll();
|
||||
List<AnnualPlanEvent> GetByRange(DateOnly from, DateOnly to);
|
||||
AnnualPlanEvent? GetByExternalId(string externalId);
|
||||
void Save(AnnualPlanEvent entry);
|
||||
void Delete(Guid id);
|
||||
}
|
||||
public interface IDocumentationRepository
|
||||
{
|
||||
List<Documentation> GetByStudent(Guid studentId);
|
||||
|
||||
Reference in New Issue
Block a user