Harrison Deng
0b507b90a1
Implemented in AdafruitShop. AdafruitShop Product listing data now persisted. AdafruitShop configuration now persisted.
17 lines
653 B
C#
17 lines
653 B
C#
using Microsoft.AspNetCore.Builder;
|
|
using Props.Shop.Framework;
|
|
|
|
namespace Props.Extensions
|
|
{
|
|
public static class ProductListingExtensions
|
|
{
|
|
public static float? GetRatingToPriceRatio(this ProductListing productListing)
|
|
{
|
|
int reviewFactor = productListing.ReviewCount.HasValue ? productListing.ReviewCount.Value : 1;
|
|
int purchaseFactor = productListing.PurchaseCount.HasValue ? productListing.PurchaseCount.Value : 1;
|
|
return (productListing.Rating * (reviewFactor > purchaseFactor ? reviewFactor : purchaseFactor)) / (productListing.LowerPrice * productListing.UpperPrice);
|
|
}
|
|
|
|
|
|
}
|
|
} |