using System.Collections.Generic; using _0_Framework.Domain; using CompanyManagment.App.Contracts.FileEmployer; namespace Company.Domain.FileEmployerAgg; public interface IFileEmployerRepository : IRepository { List GetFileEmployee(); EditFileEmployer GetDetails(long id); List Search(FileEmployerSearchModel searchModel); }