namespace Shared.Contracts.PmUser.Commands; public interface IPmUserCommandService { Task<(bool isSuccess, string pmUserDto)> Create(CreatePmUserDto command); Task<(bool isSuccess, string pmUserDto)> Edit(EditPmUserDto command); }