Files
Backend-Api/Shared.Contracts/PmRole/Commands/IPmRoleCommandService.cs
2025-12-13 18:51:08 +03:30

7 lines
204 B
C#

namespace Shared.Contracts.PmRole.Commands;
public interface IPmRoleCommandService
{
Task<(bool, string)> Create(CreatePmRoleDto command);
Task<(bool, string)> Edit(CreatePmRoleDto command);
}