using System; using System.Collections.Generic; using IRaCIS.Application.Contracts; using IRaCIS.Core.Infrastructure.Extention; namespace IRaCIS.Application.Interfaces { public interface IVacationService { Task AddOrUpdateVacation(VacationCommand vacationViewModel); Task DeleteVacation(Guid id); Task> GetVacationList(Guid doctorId, int pageIndex, int pageSize); /// 判断当前时间是否在休假 Task OnVacation(Guid reviewerId); } }