mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-03 16:19:46 +00:00
Merge pull request #14 from Shchoholiev/bug/SA-144-add-price-for-product
bug/SA-144-add-price-for-search
This commit is contained in:
commit
8c630da4d9
@ -9,6 +9,8 @@ public class ProductCreateDto
|
||||
public required string Description { get; set; }
|
||||
|
||||
public required double Rating { get; set; }
|
||||
|
||||
public required double Price { get; set; }
|
||||
|
||||
public required string[] ImagesUrls { get; set; }
|
||||
|
||||
|
@ -12,6 +12,8 @@ public class ProductDto
|
||||
|
||||
public required double Rating { get; set; }
|
||||
|
||||
public required double Price { get; set; }
|
||||
|
||||
public required string[] ImagesUrls { get; set; }
|
||||
|
||||
public required bool WasOpened { get; set; }
|
||||
|
@ -17,6 +17,8 @@ public class Product : EntityBase
|
||||
public string[] ImagesUrls { get; set; }
|
||||
|
||||
public bool WasOpened { get; set; }
|
||||
|
||||
public double Price { get; set; }
|
||||
|
||||
public ObjectId WishlistId { get; set; }
|
||||
}
|
||||
|
@ -152,6 +152,7 @@ public class ProductService : IProductService
|
||||
Name = productBuffer.Name,
|
||||
Rating = 0,
|
||||
Description = "",
|
||||
Price = 0,
|
||||
ImagesUrls = new []{"", ""},
|
||||
WasOpened = false
|
||||
}, cancellationToken);
|
||||
|
@ -212,6 +212,7 @@ public class DbInitialaizer
|
||||
Name = "Thermaltake Glacier 360 Liquid-Cooled PC",
|
||||
Description = "Cool PC for any task!",
|
||||
Rating = 4.3,
|
||||
Price = 855,
|
||||
Url = "https://www.amazon.com/Thermaltake-Liquid-Cooled-ToughRAM-Computer-S3WT-B550-G36-LCS/dp" +
|
||||
"/B09FYNM2GW/ref=sr_1_1?crid=391KAS4JFJSFF&keywords=gaming%2Bpc&qid=1697132083&sprefix=gaming%2Bpc%2Caps%2C209&sr=8-1&th=1",
|
||||
ImagesUrls = new string[]
|
||||
@ -229,6 +230,7 @@ public class DbInitialaizer
|
||||
Name = "Apple MagSafe Battery Pack",
|
||||
Description = "Portable Charger with Fast Charging Capability, Power Bank Compatible with iPhone",
|
||||
Rating = 4.3,
|
||||
Price = 35.99,
|
||||
Url = "https://www.amazon.com/Apple-MJWY3AM-A-MagSafe-Battery/dp/" +
|
||||
"B099BWY7WT/ref=sr_1_1?keywords=apple+power+bank&qid=1697375350&sr=8-1",
|
||||
ImagesUrls = new string[]
|
||||
@ -247,6 +249,7 @@ public class DbInitialaizer
|
||||
Name = "Logitech K400 Plus Wireless Touch With Easy Media Control and Built-in Touchpad",
|
||||
Description = "Reliable membrane keyboard with touchpad!",
|
||||
Rating = 4.5,
|
||||
Price = 99,
|
||||
Url = "https://www.amazon.com/Logitech-Wireless-Keyboard-Touchpad-PC-connected/dp/B014EUQOGK/" +
|
||||
"ref=sr_1_11?crid=BU2PHZKHKD65&keywords=keyboard+wireless&qid=1697375559&sprefix=keyboard+wir%2Caps%2C195&sr=8-11",
|
||||
ImagesUrls = new string[]
|
||||
@ -266,6 +269,7 @@ public class DbInitialaizer
|
||||
Description = "Cross computer control: Game changing capacity to navigate seamlessly on three computers," +
|
||||
" and copy paste text, images, and files from one to the other using Logitech Flow",
|
||||
Rating = 4.6,
|
||||
Price = 50.99,
|
||||
Url = "https://www.amazon.com/Logitech-Hyper-Fast-Scrolling-Rechargeable-Computers/dp/B08P2JFPQC/ref=sr_1_8?" +
|
||||
"crid=2BL6Z14W2TPP3&keywords=mouse%2Bwireless&qid=1697375784&sprefix=mousewireless%2Caps%2C197&sr=8-8&th=1",
|
||||
ImagesUrls = new string[]
|
||||
|
@ -257,6 +257,7 @@ public class DbInitializer
|
||||
Name = "AMD Ryzen 5 5600G 6-Core 12-Thread Unlocked Desktop Processor with Radeon Graphics",
|
||||
Description = "Features best-in-class graphics performance in a desktop processor for smooth 1080p gaming, no graphics card required",
|
||||
Rating = 4.8,
|
||||
Price = 120,
|
||||
Url = "https://a.co/d/5ceuIrq",
|
||||
ImagesUrls = new string[]
|
||||
{
|
||||
@ -273,6 +274,7 @@ public class DbInitializer
|
||||
Name = "Samsung 970 EVO Plus SSD 2TB NVMe M.2 Internal Solid State Hard Drive, V-NAND Technology, Storage and Memory Expansion for Gaming, Graphics w/ Heat Control, Max Speed, MZ-V7S2T0B/AM ",
|
||||
Description = "7 Year Limited Warranty: The 970 EVO Plus provides up to 1200 TBW (Terabytes Written) with 5-years of protection for exceptional endurance powered by the latest V-NAND technology and Samsung's reputation for quality ",
|
||||
Rating = 4.8,
|
||||
Price = 153,
|
||||
Url = "https://a.co/d/gxnuqs1",
|
||||
ImagesUrls = new string[]
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user