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.

18 lines
636 B

using MODELING_DEF_DES_MI_VI.Helpers;
using MODELING_DEF_DES_MI_VI.Modules.ModelCreationUnit;
using MODELING_DEF_DES_MI_VI.Modules.PoreInspectionUnit;
using System.Windows;
namespace MODELING_DEF_DES_MI_VI
{
public class MainWindowViewModel : PropertyChangedClass
{
public UIElement PoreInspectionUnit { get; set; }
public UIElement ModelCreationUnit { get; set; }
public MainWindowViewModel(ModelCreationView modelCreationView, PoreInspectionView poreInspectionView)
{
PoreInspectionUnit = poreInspectionView;
ModelCreationUnit = modelCreationView;
}
}
}