using MediatR; namespace ExpenseTracker.Application.Users.Commands.Delete; public class DeleteUserCommandHandler : IRequestHandler { public DeleteUserCommandHandler() { } public async Task Handle(DeleteUserCommand request, CancellationToken cancellationToken) { throw new NotImplementedException(); } }