project rename
project rename
This commit is contained in:
parent
d5101ab206
commit
d9b339c8a1
22 changed files with 142 additions and 126 deletions
18
CharacterRecordsGenerator/GeneratedResultWindow.xaml.cs
Normal file
18
CharacterRecordsGenerator/GeneratedResultWindow.xaml.cs
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
namespace CharacterRecordsGenerator
|
||||
{
|
||||
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