react-version #1

Merged
memartel_loc merged 290 commits from react-version into main 2023-11-04 09:48:15 -04:00
Showing only changes of commit 30e5e9cafd - Show all commits

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"
});