Files
BeWoPlaner/Data/Entities/Customer2Token.cs

57 lines
1.2 KiB
C#
Raw Permalink Normal View History

2017-06-30 13:33:49 +02:00
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;
}
}
}
2023-08-23 23:15:58 +02:00
public virtual long TokenOid { get; set; }
public virtual long CustomerOid { get; set; }
2017-06-30 13:33:49 +02:00
}
}