18 lines
466 B
C#
18 lines
466 B
C#
using System.Windows;
|
|
using StructureHelper.Services;
|
|
|
|
namespace StructureHelper.Windows.MainWindow
|
|
{
|
|
public partial class MainView : Window
|
|
{
|
|
public IPrimitiveRepository PrimitiveRepository { get; }
|
|
|
|
public MainView(IPrimitiveRepository primitiveRepository, MainViewModel viewModel)
|
|
{
|
|
PrimitiveRepository = primitiveRepository;
|
|
DataContext = viewModel;
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|