using System.Collections.Generic; using _0_Framework.Domain; using CompanyManagment.App.Contracts.MasterPetition; namespace Company.Domain.MasterPetition; public interface IMasterPetitionRepository : IRepository { EditMasterPetition GetDetails(long id); EditMasterPetition GetDetails(long fileId, int boardTypeId); List Search(MasterPetitionSearchModel searchModel); void Remove(long id); }