The ObjectFiller.NET has a fluent setup API. With that Setup API you are able to configure the ObjectFiller.NET very detailed. It is possible to configure how the ObjectFiller will handle concrete types or properties. You are also able to save and reuse setups.
The following chapters will show you the power of the fluent ObjectFiller.NET API.

The setup API can be started by calling the .Setup() method:

Filler<AnyType> pFiller = new Filler<AnyType>();
pFiller.Setup()...;   
AnyType filledObject = pFiller.Create();