1234567891011121314151617 |
- using System.Windows;
- using WpfAppUI.ViewModel;
- namespace WpfAppUI.View.WindowEmploee
- {
- /// <summary>
- /// Логика взаимодействия для EditEmploee.xaml
- /// </summary>
- public partial class EditEmploee : Window
- {
- public EditEmploee(int id)
- {
- InitializeComponent();
- DataContext = new EditEmploeeViewModel(id, this);
- }
- }
- }
|