using _0_Framework.Domain; using WorkFlow.Application.Contracts.RollCallConfirmedWithoutLunchBreak; namespace WorkFlow.Domain.RollCallConfirmedWithoutLunchBreakAgg { public interface IRollCallConfirmedWithoutLunchBreakRepository : IRepository { List GetByWorkshopId(long workshopId, DateTime start, DateTime end); } }