using PARR.Constants; namespace PARR.BLL.Services.Interfaces { public delegate IQueryable GetWeekendsDelegate(DateOnly start, DateOnly end); public interface ICalendarService { /// /// Получить только рабочие дни за период /// /// /// /// /// /// List GetWorkDatesForPeriod(DateOnly startPeriod, DistributionPeriodTypeEnum periodType, string distributionPeriod, GetWeekendsDelegate getWeekends); } }