/// <summary> /// Checks if exists an wish list item on the user list /// </summary> /// <param name="userId">User Id</param> /// <param name="productId">Product Id</param> /// <returns>True or false</returns> public bool Exists(long userId, long productId) { return(_wishRepository.Exists(userId, productId)); }