12 lines
430 B
C#
12 lines
430 B
C#
|
|
using _0_Framework.Domain;
|
|
using WorkFlow.Application.Contracts.RollCallConfirmedWithoutLunchBreak;
|
|
|
|
namespace WorkFlow.Domain.RollCallConfirmedWithoutLunchBreakAgg
|
|
{
|
|
public interface IRollCallConfirmedWithoutLunchBreakRepository : IRepository<long, RollCallConfirmedWithoutLunchBreak>
|
|
{
|
|
List<RollCallConfirmedWithoutLunchBreakViewModel> GetByWorkshopId(long workshopId, DateTime start, DateTime end);
|
|
}
|
|
}
|