using System.Collections.Generic; using System.Threading.Tasks; using _0_Framework_b.Domain; using CompanyManagment.App.Contracts.Employee; using CompanyManagment.App.Contracts.Employer; using CompanyManagment.App.Contracts.File1; namespace Company.Domain.File1; public interface IFileRepository : IRepository { EditFile GetDetails(long id); List Search(FileSearchModel searchModel); long FindLastArchiveNumber(); string GetEmployeeFullNameById(long id); string GetEmployerFullNameById(long id); List GetAllEmploees(); List GetAllEmployers(); #region Mahan Task> GetExcelDetails(); Task> GetList(GetFileSearchModel searchModel); #endregion }