public async Task When_MarkAllCustomerMessagesAsReadAsync_Is_Executed_Then_Push_Notifications_Client_Is_Called()
        {
            _pushNotificationsClientMock
            .Setup(x =>
                   x.NotificationMessagesApi.MarkAllMessagesAsReadAsync(It.IsAny <MarkAllMessagesAsReadRequestModel>()))
            .Returns(Task.CompletedTask);

            await _service.MarkAllCustomerMessagesAsReadAsync(It.IsAny <string>());

            _pushNotificationsClientMock.Verify(
                x => x.NotificationMessagesApi.MarkAllMessagesAsReadAsync(
                    It.IsAny <MarkAllMessagesAsReadRequestModel>()), Times.Once);
        }
        public async Task MarkAllCustomerMessagesAsReadAsync()
        {
            var customerId = _requestContext.UserId;

            await _notificationMessagesService.MarkAllCustomerMessagesAsReadAsync(customerId);
        }