rename department short and long fields,

This commit is contained in:
2022-05-16 18:53:01 +02:00
parent f362d7b2a0
commit 828e6c69fd
2 changed files with 6 additions and 6 deletions

View File

@@ -45,7 +45,7 @@ namespace it_projekt
else {
foreach (Person person in db.Persons)
{
this.dataGrid.Rows.Add(person.Id, person.Firstname, person.Lastname, person.department_short, person.department_long, person.CreationDate, false);
this.dataGrid.Rows.Add(person.Id, person.Firstname, person.Lastname, person.Department_short, person.Department_long, person.CreationDate, false);
}
this.loginBtn.Enabled = false;
this.exportBtn.Enabled = true;