protected override void Customize(ICustomizeFactoryOptions <Product> customization)
 {
     customization
     .UseConstructor(() => new Product(name: "Shirt", category: "Clothes"))
     .Set(x => x.Description = "Orange");
 }
Esempio n. 2
0
 protected override void Customize(ICustomizeFactoryOptions <Product> customization)
 {
     customization
     .UseConstructor(() => new Product("Nimbus 2000", "Brooms"))
     .Set(x => x.Description = "The best flight await you!");
 }