1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13:
public string Email { get { return _customer.Email; } set { if (value == _customer.Email) return; _customer.Email = value; base.OnPropertyChanged("Email"); } }