Update InventoryContext.cs

This commit is contained in:
MarcEricMartel 2022-10-18 07:51:13 -07:00
parent 13c34c7215
commit 30e5e9cafd

View File

@ -18,6 +18,7 @@ public class InventoryContext : DbContext {
Description = $"Pour faire votre propre bonhomme de 1837, comme dans le bon vieux temps.",
Status = Product.States.Promotion,
Price = 85.86M,
PromoPrice = 29.99M,
Quantity = 1,
ImageName = $"ceintureflechee"
});
@ -28,6 +29,7 @@ public class InventoryContext : DbContext {
Description = $"Parce que ça sent la coupe!",
Status = Product.States.Available,
Price = 15.64M,
PromoPrice = 9.99M,
Quantity = 54,
ImageName = $"pantouflesCH"
});
@ -38,6 +40,7 @@ public class InventoryContext : DbContext {
Description = $"On ne lui ferait pas mal, en tout cas!!",
Status = Product.States.Clearance,
Price = 1453.12M,
PromoPrice = 999.99M,
Quantity = 1,
ImageName = $"jeanlucmongrain"
});