using _0_Framework.Domain; using System.Collections.Generic; using CompanyManagment.App.Contracts.Chapter; namespace Company.Domain.ChapterAgg; public interface IChapterRepozitory : IRepository { EditChapter GetDetails( long id); //DeleteChapter GetDelete(long id); List Search(ChapterSearchModel SearchModel); List GetAllChapter(); }