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