[Table(Name="dbo.Customers")]
[DataContract()]
public partial class Customer : INotifyPropertyChanging, INotifyPropertyChanged {

// kd vynechn ...

[Column(Storage="_CustomerID", DbType="NChar(5) NOT NULL",
	CanBeNull=false, IsPrimaryKey=true, UpdateCheck=UpdateCheck.Never)]
[DataMember(Order=1)]
public string CustomerID {
get {
		return this._CustomerID;
}
set {
if ((this._CustomerID != value)) {
this.OnCustomerIDChanging(value);
this.SendPropertyChanging();
this._CustomerID = value;
this.SendPropertyChanged("CustomerID");
this.OnCustomerIDChanged();
}
}
}
// kd vynechn ...
}
