Files
Backend-Api/CompanyManagment.App.Contracts/MasterPenaltyTitle/IMasterPenaltyTitleApplication.cs
2024-07-05 21:36:15 +03:30

13 lines
546 B
C#

using System.Collections.Generic;
using _0_Framework.Application;
namespace CompanyManagment.App.Contracts.MasterPenaltyTitle;
public interface IMasterPenaltyTitleApplication
{
OperationResult Create(CreateMasterPenaltyTitle command);
OperationResult Edit(EditMasterPenaltyTitle command);
List<EditMasterPenaltyTitle> Search(long MasterPetitionId);
OperationResult CreateMasterPenaltyTitles(List<EditMasterPenaltyTitle> MasterPenaltyTitles, long MasterPetitionId);
void RemoveMasterPenaltyTitles(long MasterPetitionId);
}