14 lines
367 B
C#
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();
|
|
}
|
|
} |