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