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

            var notificationDescription = _notificationManager.BarAddedDescription(username, entityName);
            var notification            = await CreateNotificationAsync(notificationDescription, username);
        }