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

12 lines
403 B
C#

using System.Collections.Generic;
using _0_Framework.Domain;
using CompanyManagment.App.Contracts.MasterPenaltyTitle;
namespace Company.Domain.MasterPenaltyTitle;
public interface IMasterPenaltyTitleRepository : IRepository<long, MasterPenaltyTitle>
{
List<EditMasterPenaltyTitle> Search(long petitionId);
void RemoveMasterPenaltyTitles(List<EditMasterPenaltyTitle> MasterPenaltyTitles);
}