Merge branch 'Feature/ClientLeavePageApi' into Main

This commit is contained in:
SamSys
2025-12-27 17:00:07 +03:30
5 changed files with 153 additions and 15 deletions

View File

@@ -12,7 +12,7 @@ public interface ILeaveRepository : IRepository<long, Leave>
{
EditLeave GetDetails(long id);
List<LeaveViewModel> search(LeaveSearchModel searchModel);
OperationResult RemoveLeave(long id);
Task<OperationResult> RemoveLeave(long id);
#region Pooya
List<LeaveViewModel> GetByWorkshopIdEmployeeIdInDates(long workshopId, long employeeId, DateTime start, DateTime end);