17 lines
654 B
C#
17 lines
654 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using _0_Framework.Domain;
|
|
using CompanyManagment.App.Contracts.HolidayItem;
|
|
using System.Threading.Tasks;
|
|
namespace Company.Domain.HolidayItemAgg;
|
|
|
|
public interface IHolidayItemRepository : IRepository<long, HolidayItem>
|
|
{
|
|
List<string> GetHolidayItem(string year);
|
|
Task <List<string>> GetHolidayItemAsync(string year);
|
|
void RemoveItems(string year);
|
|
bool GetHoliday(DateTime holidayCheck);
|
|
System.Threading.Tasks.Task <bool> GetHolidayAsync(DateTime holidayCheck);
|
|
EditHolidayItem GetDetails(long id);
|
|
List<HolidayItemViewModel> Search(HolidayItemSearchModel searchModel);
|
|
} |