add excel export for file page

This commit is contained in:
MahanCh
2025-04-14 16:02:51 +03:30
parent fa587c61eb
commit 4ffdf14de2
10 changed files with 247 additions and 6 deletions

View File

@@ -1,4 +1,5 @@
using System.Collections.Generic;
using System.Threading.Tasks;
using _0_Framework_b.Domain;
using CompanyManagment.App.Contracts.Employee;
using CompanyManagment.App.Contracts.Employer;
@@ -22,4 +23,6 @@ public interface IFileRepository : IRepository<long, File1>
List<FileViewModel> GetFileList(FileSearchModel searchModel);
#endregion
Task<List<FileExcelViewModel>> GetExcelDetails();
}