7 lines
204 B
C#
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);
|
|
} |