12 lines
357 B
C#
12 lines
357 B
C#
using System.Collections.Generic;
|
|
using _0_Framework_b.Domain;
|
|
using CompanyManagment.App.Contracts.PenaltyTitle;
|
|
|
|
|
|
namespace Company.Domain.PenaltyTitle;
|
|
|
|
public interface IPenaltyTitleRepository : IRepository<long, PenaltyTitle>
|
|
{
|
|
List<EditPenaltyTitle> Search(long petitionId);
|
|
void RemovePenaltyTitles(List<EditPenaltyTitle> penaltyTitles);
|
|
} |