1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| [EdmScalarPropertyAttribute(EntityKeyProperty = false, IsNullable = true)]
[DataMemberAttribute()]
public global::System.String complement
{
get
{
return this.Charge.complement;
}
set
{
OncomplementChanging(value);
ReportPropertyChanging("complement");
this.Charge.complement = StructuralObject.SetValidValue(value, true);
ReportPropertyChanged("complement");
OncomplementChanged();
}
}
//private global::System.String _complement;
partial void OncomplementChanging(global::System.String value);
partial void OncomplementChanged(); |
Partager