Add project files.
This commit is contained in:
parent
501225291b
commit
91d580e21f
20 changed files with 1742 additions and 0 deletions
18
AuroraRecordGenerator/GeneratedResultWindow.xaml.cs
Normal file
18
AuroraRecordGenerator/GeneratedResultWindow.xaml.cs
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
namespace AuroraRecordGenerator
|
||||
{
|
||||
public partial class GeneratedResultWindow
|
||||
{
|
||||
public GeneratedResultWindow()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
public GeneratedResultWindow(Record record) : this()
|
||||
{
|
||||
var formatter = new RecordFormatter(record);
|
||||
EmploymentBox.Text = formatter.EmploymentRecords;
|
||||
MedicalBox.Text = formatter.MedicalRecords;
|
||||
SecurityBox.Text = formatter.SecurityRecords;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue