|
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();
|
|
}
|
|
}
|
|
}
|