Martin Fowler coins the phrase
http://martinfowler.com/bliki/FluentInterface.html
Wikipedia
http://en.wikipedia.org/wiki/Fluent_interface
SE Radio 652: Christian Mesh on OpenTofu
5 days ago
js / python / linux / .NET C# F# / MS-SQL / postgresql / maths / data / logic / thought / SmartCard / EMV / django / HTML
Register Types Implementing Specified Interface:
container.Register(
AllTypes.
FromThisAssembly(). // register all types from parent assembly
BasedOn). // that inherit/implement interface IDialogService
WithService.FromInterface(). // allow resolution based on interface
Configure(c => c.LifeStyle.Is(LifestyleType.Transient)) // construct new
);
Resolve Instance of Class by Interface
IDialogService dialogService = container.Resolve();