This commit is contained in:
Natlinux
2022-11-13 18:10:38 +01:00
parent d2c021c5b7
commit ee8c687f5c
13 changed files with 380 additions and 8 deletions

View File

@@ -8,5 +8,102 @@ namespace Apollon.WPF.ViewModels
{
public class NameListViewModel : ViewModelBase
{
}
private string _firstName;
public string FirstName
{
get
{
return _firstName;
}
set
{
_firstName = value;
OnPropertyChanged(nameof(FirstName));
}
}
private string _lastName;
public string LastName
{
get
{
return _lastName;
}
set
{
_lastName = value;
OnPropertyChanged(nameof(LastName));
}
}
private int _passNumber;
public int PassNumber
{
get
{
return _passNumber;
}
set
{
_passNumber = value;
OnPropertyChanged(nameof(PassNumber));
}
}
private string _society;
public string Society
{
get
{
return _society;
}
set
{
_society = value;
OnPropertyChanged(nameof(Society));
}
}
private int _societyNumber;
public int SocietyNumber
{
get
{
return _societyNumber;
}
set
{
_societyNumber = value;
OnPropertyChanged(nameof(SocietyNumber));
}
}
private string _birthday;
public string Birthday
{
get
{
return _birthday;
}
set
{
_birthday = value;
OnPropertyChanged(nameof(Birthday));
}
}
private string _country;
public string Country
{
get
{
return _country;
}
set
{
_country = value;
OnPropertyChanged(nameof(Country));
}
}
}
}