Files
BeWoPlaner/Data/Entities/Customer2Token.cs
2017-06-30 13:33:49 +02:00

53 lines
1.1 KiB
C#

using System.Collections.Generic;
using BS.Shared;
namespace BeWo.Data.Entities
{
public class Customer2Token : BeWoEntityBase
{
public static string PropertyName_Token = "Token";
public static string PropertyName_Customer = "Customer";
private Token _Token;
private Customer _Customer;
public Customer2Token()
{
this._Tid = TableID.Customer2Token;
}
public virtual Token Token
{
get
{
return this._Token;
}
set
{
if (this.AreDifferent(this._Token, value))
{
this._Token = value;
}
}
}
public virtual Customer Customer
{
get
{
return this._Customer;
}
set
{
if (this.AreDifferent(this._Customer, value))
{
this._Customer = value;
}
}
}
}
}