Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

CustomWishlistService.cs

using Nop.Core.Domain.Orders;
using Nop.Data;

namespace Nop.Services.Orders;

/// <summary>
/// Custom wishlist service
/// </summary>
public partial class CustomWishlistService : ICustomWishlistService
{
    #region Fields

    protected readonly IRepository<CustomWishlist> _customWishlistRepository;
    protected readonly ShoppingCartSettings _shoppingCartSettings;

    #endregion

    #region Ctor

    public CustomWishlistService(IRepository<CustomWishlist> customWishlistRepository, 
        ShoppingCartSettings shoppingCartSettings)
    {
        _customWishlistRepository = customWishlistRepository;
        _shoppingCartSettings = shoppingCartSettings;
    }

    #endregion

    #region Methods

    /// <summary>
    /// Retrieves all custom wishlists associated with the specified customer.
    /// </summary>
    /// <param name="customerId">The unique identifier of the customer whose custom wishlists are to be retrieved.</param>
    /// <returns>A task that represents the asynchronous operation. The task result contains a list of  <see
    /// cref="CustomWishlist"/> objects associated with the specified customer. If multiple wishlists  are not allowed,
    /// an empty list is returned.</returns>
    public virtual async Task<IList<CustomWishlist>> GetAllCustomWishlistsAsync(int customerId)
    {
        if (!_shoppingCartSettings.AllowMultipleWishlist)
            return new List<CustomWishlist>();

        var query = _customWishlistRepository.Table
            .Where(w => w.CustomerId == customerId)
            .OrderByDescending(w => w.CreatedOnUtc);
        return await query.ToListAsync();
    }

    /// <summary>
    /// Adds a custom wishlist item to the repository.
    /// </summary>
    /// <param name="item">The custom wishlist item to add. Cannot be <see langword="null"/>.</param>
    public virtual async Task AddCustomWishlistAsync(CustomWishlist item)
    {

        await _customWishlistRepository.InsertAsync(item);
    }

    /// <summary>
    /// Removes a custom wishlist item with the specified identifier.
    /// </summary>
    /// <param name="itemId">The unique identifier of the custom wishlist item to remove. Must be a valid identifier of an existing item.</param>
    public virtual async Task RemoveCustomWishlistAsync(int itemId)
    {
        var item = await _customWishlistRepository.GetByIdAsync(itemId);
        if (item != null)
        {
            await _customWishlistRepository.DeleteAsync(item);
        }
    }

    /// <summary>
    /// Retrieves a custom wishlist by its unique identifier.
    /// </summary>
    /// <param name="itemId">The unique identifier of the custom wishlist to retrieve. Must be a positive integer.</param>
    /// <returns>A <see cref="CustomWishlist"/> object representing the custom wishlist with the specified identifier. Returns
    /// null if no wishlist is found with the given identifier.</returns>
    public virtual async Task<CustomWishlist> GetCustomWishlistByIdAsync(int itemId)
    {
        return await _customWishlistRepository.GetByIdAsync(itemId);
    }

    #endregion
}