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

15 lines
455 B
C#

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