Files
Backend-Api/CompanyManagment.EFCore/Services/HolidayQueryService.cs
2025-12-13 18:25:19 +03:30

14 lines
367 B
C#

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Shared.Contracts.Holidays;
namespace CompanyManagment.EFCore.Services;
public class HolidayQueryService : IHolidayQueryService
{
public Task<List<HolidayDto>> GetHolidaysInDates(DateTime startDate, DateTime endDate)
{
throw new NotImplementedException();
}
}