presence/data/Repository/IPresenceRepository.cs

24 lines
539 B
C#
Raw Permalink Normal View History

2024-12-05 07:31:49 +00:00
using data.DAO;
using System;
using System.Collections.Generic;
namespace data.Repository
{
public interface IPresenceRepository
{
IEnumerable<Diary> GetPresence(
int groupId,
int? subjectId = null,
2024-12-10 05:26:38 +00:00
DateOnly? date = null,
2024-12-05 07:31:49 +00:00
int? studentId = null);
2024-12-10 05:26:38 +00:00
public void DeleteAllPresence();
public void DeleteGroupPresence(int groupId);
public void AddPresenceRecords(List<Diary> items);
public void UpdatePresenceRecords(List<Diary> items);
2024-12-05 07:31:49 +00:00
}
}