using _0_Framework.Domain; using System.Collections.Generic; using CompanyManagment.App.Contracts.Subtitle; namespace Company.Domain.SubtitleAgg; public interface ISubtitleRepozitory : IRepository { EditSubtitle GetDetails( long id); //DeleteSubtitle GetDelete(long id); List Search(SubtitleSearchModel SearchModel); List GetAllSubtitle(); }