public async Task BarDeletedNotificationToAdminAsync(string id, string entityName)
        {
            entityName.ValidateIfNull(ExceptionMessages.BarNameNull);
            var username = await _userService.GetUsernameById(id);

            var notificationDescription = _notificationManager.BarDeletedDescription(username, entityName);

            await CreateNotificationAsync(notificationDescription, username);
        }