Теперь в редактирование норм выводит ФИО + др
This commit is contained in:
parent
d299dc1a45
commit
7db0881977
@ -16,5 +16,12 @@ namespace EmployeeManagmentContracts.ViewModels
|
|||||||
public string Gender { get; set; } = string.Empty;
|
public string Gender { get; set; } = string.Empty;
|
||||||
public string Address { get; set; } = string.Empty;
|
public string Address { get; set; } = string.Empty;
|
||||||
public string Telephone { get; set; } = string.Empty;
|
public string Telephone { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
// Вычисляемое свойство для полного имени
|
||||||
|
public string FullName => $"{Surname} {Name} {Patronymic}";
|
||||||
|
|
||||||
|
// Вычисляемое свойство для полного имени с датой рождения
|
||||||
|
public string FullNameWithBirthday => $"{Surname} {Name} {Patronymic} ({Birthday:dd.MM.yyyy})";
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -23,8 +23,8 @@ namespace EmployeeManagmentView.PhysicalPerson
|
|||||||
{
|
{
|
||||||
_physicalPersons = _phisicalPersonLogic.GetFullList();
|
_physicalPersons = _phisicalPersonLogic.GetFullList();
|
||||||
PhysicalPersonComboBox.ItemsSource = _physicalPersons;
|
PhysicalPersonComboBox.ItemsSource = _physicalPersons;
|
||||||
PhysicalPersonComboBox.DisplayMemberPath = "Name"; // "FullName" - свойство с именем
|
PhysicalPersonComboBox.DisplayMemberPath = "FullNameWithBirthday";
|
||||||
PhysicalPersonComboBox.SelectedValuePath = "Id"; // "Id" - идентификатор физ.лица
|
PhysicalPersonComboBox.SelectedValuePath = "Id";
|
||||||
}
|
}
|
||||||
|
|
||||||
// Событие при выборе физ.лица
|
// Событие при выборе физ.лица
|
||||||
|
Loading…
Reference in New Issue
Block a user