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