7 lines
239 B
C#
7 lines
239 B
C#
namespace Shared.Contracts.PmUser.Commands;
|
|
|
|
public interface IPmUserCommandService
|
|
{
|
|
Task<(bool isSuccess, string pmUserDto)> Create(CreatePmUserDto command);
|
|
Task<(bool isSuccess, string pmUserDto)> Edit(EditPmUserDto command);
|
|
} |