9 lines
363 B
C#
9 lines
363 B
C#
using _0_Framework.Domain;
|
|
using WorkFlow.Application.Contracts.RollCallConfirmedAbsence;
|
|
|
|
namespace WorkFlow.Domain.RollCallConfirmedAbsenceAgg;
|
|
|
|
public interface IRollCallConfirmedAbsenceRepository : IRepository<long, RollCallConfirmedAbsence>
|
|
{
|
|
List<RollCallConfirmAbsenceViewModel> GetConfirmAbsencesBy(long workshopId, DateTime start, DateTime end);
|
|
} |