Woohoo
This commit is contained in:
@@ -16,9 +16,9 @@ public class InventoryContext : DbContext {
|
||||
Title = $"Ceinture flèchée",
|
||||
Category = $"Linge",
|
||||
Description = $"Pour faire votre propre bonhomme de 1837, comme dans le bon vieux temps.",
|
||||
Status = Product.States.Promotion,
|
||||
Price = 85.86M,
|
||||
Quantity = 1,
|
||||
isDiscontinued = false,
|
||||
ImageName = $"ceintureflechee"
|
||||
});
|
||||
modelBuilder.Entity<Product>().HasData(new Product {
|
||||
@@ -26,9 +26,9 @@ public class InventoryContext : DbContext {
|
||||
Title = $"Pantoufles du Canadien en Phentex",
|
||||
Category = $"Linge",
|
||||
Description = $"Parce que ça sent la coupe!",
|
||||
Status = Product.States.Available,
|
||||
Price = 15.64M,
|
||||
Quantity = 54,
|
||||
isDiscontinued = false,
|
||||
ImageName = $"pantouflesCH"
|
||||
});
|
||||
modelBuilder.Entity<Product>().HasData(new Product {
|
||||
@@ -36,9 +36,9 @@ public class InventoryContext : DbContext {
|
||||
Title = $"Jean-Luc Mongrain",
|
||||
Category = $"Homme",
|
||||
Description = $"On ne lui ferait pas mal, en tout cas!!",
|
||||
Status = Product.States.Clearance,
|
||||
Price = 1453.12M,
|
||||
Quantity = 1,
|
||||
isDiscontinued = true,
|
||||
ImageName = $"jeanlucmongrain"
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user