using _0_Framework.Domain; using System.Collections.Generic; using Company.Domain.TextManagerAgg; using CompanyManagment.App.Contracts.TextManager; namespace P_TextManager.Domin.TextManagerAgg; public interface ITextManagerRepozitory:IRepository { EditTextManager GetDetails( long id); List Search(TextManagerSearchModel SearchModel); List GetAllTextManager(); List GetRelation(long textManagerId); void ModuleTextManager(long textManagerId, long moduleId); void RemoveOldRelation(long textManagerId, long moduleId); List GetlisAllModulet(); }