Files
Backend-Api/Shared.Contracts/PmUser/Commands/IPmUserCommandService.cs
2025-12-13 20:04:57 +03:30

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);
}