public async Task RequestProviderQuarterlyUpdateAsync(string userName)
        {
            var backgroundProcessHistoryId = await _backgroundProcessHistoryRepository.CreateAsync(
                new BackgroundProcessHistory
            {
                ProcessType = BackgroundProcessType.ProviderQuarterlyUpdateEmail.ToString(),
                Status      = BackgroundProcessHistoryStatus.Pending.ToString(),
                CreatedBy   = userName
            });

            await _messageQueueService.PushProviderQuarterlyRequestMessageAsync(new SendProviderQuarterlyUpdateEmail
            {
                BackgroundProcessHistoryId = backgroundProcessHistoryId
            });
        }