Files
Backend-Api/CompanyManagment.App.Contracts/MasterPetition/IMasterPetitionApplication.cs
2025-04-15 15:06:17 +03:30

14 lines
509 B
C#

using System.Collections.Generic;
using _0_Framework.Application;
namespace CompanyManagment.App.Contracts.MasterPetition;
public interface IMasterPetitionApplication
{
OperationResult Create(CreateMasterPetition command);
OperationResult Edit(EditMasterPetition command);
OperationResult Remove(long id);
EditMasterPetition GetDetails(long id);
EditMasterPetition GetDetails(long fileId, int boardTypeId);
List<EditMasterPetition> Search(MasterPetitionSearchModel searchModel);
}