This commit is contained in:
Курнат Андрей
2026-03-22 21:44:29 +03:00
parent a47a7a5a3b
commit 7bbca6ba55
750 changed files with 13718 additions and 43 deletions

View File

@@ -0,0 +1,21 @@
using System.Windows;
namespace XLAB2
{
public partial class VerificationReportsWindow : Window
{
private readonly VerificationReportsWindowViewModel _viewModel;
public VerificationReportsWindow()
{
InitializeComponent();
_viewModel = new VerificationReportsWindowViewModel(new VerificationReportsService(), new DialogService(this));
DataContext = _viewModel;
}
private async void Window_Loaded(object sender, RoutedEventArgs e)
{
await _viewModel.InitializeAsync();
}
}
}