Add project files.

This commit is contained in:
Lohikar 2017-11-17 10:17:34 -06:00
parent 501225291b
commit 91d580e21f
20 changed files with 1742 additions and 0 deletions

View 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;
}
}
}