16 lines
375 B
C#
16 lines
375 B
C#
using MediatR;
|
|
|
|
namespace ExpenseTracker.Application.Users.Commands.Create;
|
|
|
|
public class CreateUserCommandHandler : IRequestHandler<CreateUserCommand, UserDto>
|
|
{
|
|
public CreateUserCommandHandler()
|
|
{
|
|
}
|
|
|
|
public async Task<UserDto> Handle(CreateUserCommand request, CancellationToken cancellationToken)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|