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