Files
Backend-Api/WorkFlow/Domain/WorkFlow.Domain/RollCallConfirmedWithoutLunchBreakAgg/IRollCallConfirmedWithoutLunchBreakRepository.cs

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);
}
}