20 lines
480 B
C#
20 lines
480 B
C#
using System.Windows;
|
|
using HC_APTBS.ViewModels.Dialogs;
|
|
|
|
namespace HC_APTBS.Views.Dialogs
|
|
{
|
|
/// <summary>
|
|
/// Dialog that collects operator, client, and company information before
|
|
/// generating the PDF test report.
|
|
/// </summary>
|
|
public partial class ReportDialog : Window
|
|
{
|
|
public ReportDialog(ReportViewModel vm)
|
|
{
|
|
InitializeComponent();
|
|
DataContext = vm;
|
|
vm.RequestClose += Close;
|
|
}
|
|
}
|
|
}
|