add: implement PrintAllAsync and PrintOneAsync methods for leave printing functionality

This commit is contained in:
2025-12-24 11:17:53 +03:30
parent 89de3162de
commit 07587d162f
5 changed files with 116 additions and 0 deletions

View File

@@ -29,6 +29,8 @@ public interface ILeaveRepository : IRepository<long, Leave>
List<LeaveMainViewModel> searchClient(LeaveSearchModel searchModel);
LeavePrintViewModel PrintOne(long id);
List<LeavePrintViewModel> PrintAll(List<long> id);
Task<List<LeavePrintResponseViewModel>> PrintAllAsync(List<long> ids, long workshopId);
#region Vafa