4 writes to Type
CatalogDb (4)
CatalogDbInitializer.cs (4)
52
new() {
Type
= "Mug" },
53
new() {
Type
= "T-Shirt" },
54
new() {
Type
= "Sheet" },
55
new() {
Type
= "USB Memory Stick" }
4 references to Type
CatalogDb (4)
CatalogDbInitializer.cs (3)
64
var mug = catalogTypes.First(c => c.
Type
== "Mug");
65
var tshirt = catalogTypes.First(c => c.
Type
== "T-Shirt");
66
var sheet = catalogTypes.First(c => c.
Type
== "Sheet");
Model.cs (1)
49
builder.Property(cb => cb.
Type
)