using System.Collections.Generic; using _0_Framework.Domain; using CompanyManagment.App.Contracts.TaxLeftWorkItem; namespace Company.Domain.TaxLeftWorkItemAgg; public interface ITaxLeftWorkItemRepository : IRepository { EditTaxLeftWorkItem GetDetails(long id); List Search(TaxLeftWorkItemSerachModel searchModel); }