Stylet/Samples/Stylet.Samples.HelloDialog/Bootstrapper.cs

15 lines
339 B
C#

using System;
namespace Stylet.Samples.HelloDialog
{
public class Bootstrapper : Bootstrapper<ShellViewModel>
{
protected override void ConfigureIoC(StyletIoC.IStyletIoCBuilder builder)
{
base.ConfigureIoC(builder);
builder.Bind<IDialogFactory>().ToAbstractFactory();
}
}
}