public async Task <CompleteServiceRequestCommand> HandleAsync(CompleteServiceRequestCommand command)
        {
            var request = await _repository.GetByIdAsync(command.RequestId);

            request.Completed();
            await _repository.UpdateAsync(request);

            return(command);
        }