11 lines
262 B
C#
11 lines
262 B
C#
using PARR.DAL.Models;
|
|
using PARR.DAL.Services.Interfaces.Base;
|
|
|
|
namespace PARR.DAL.Services.Interfaces
|
|
{
|
|
public interface IWeekendDayService : IBaseService<WeekendDay>
|
|
{
|
|
IQueryable<DateOnly> GetWeekends(DateOnly start, DateOnly end);
|
|
}
|
|
}
|