Files
BeWoPlaner/Data/Entities/Customer2Token.cs
2023-08-23 23:15:58 +02:00

57 lines
1.2 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;
}
}
}
public virtual long TokenOid { get; set; }
public virtual long CustomerOid { get; set; }
}
}