public async Task RemoveAsync(string customerId)
        {
            var deleted = await _customerProfileRepository.DeleteAsync(customerId);

            if (deleted)
            {
                _log.Info("Customer profile was removed", context: customerId);
            }
            else
            {
                _log.Warning("Customer profile was not removed", context: customerId);
            }
        }