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

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

            await CreateNotificationAsync(notificationDescription, username);
        }