You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
335 B

using Autofac;
using System.Windows;
namespace MODELING_DEF_DES_MI_VI
{
public partial class MainWindow : Window
{
public MainWindow()
{
var c = new Bootstrap().CompileContainer();
DataContext = c.Resolve<MainWindowViewModel>();
InitializeComponent();
}
}
}