16 lines
357 B
C#
16 lines
357 B
C#
using MediatR;
|
|
|
|
namespace ExpenseTracker.Application.Users.Commands.Delete;
|
|
|
|
public class DeleteUserCommandHandler : IRequestHandler<DeleteUserCommand>
|
|
{
|
|
public DeleteUserCommandHandler()
|
|
{
|
|
}
|
|
|
|
public async Task Handle(DeleteUserCommand request, CancellationToken cancellationToken)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|