Files
Backend-Api/Company.Domain/ChapterAgg/IChapterRepozitory.cs
2024-07-05 21:36:15 +03:30

13 lines
411 B
C#

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