using BS.Shared; using System; namespace BeWo.Data.Entities { public class CustomerAPPCode : BeWoEntityBase { public static string PropertyName_CustomerCode = "CustomerCode"; public static string PropertyName_CustomerCodeGenDate = "CustomerCodeGenDate"; public static string PropertyName_IsChatAktiv = "IsChatAktiv"; public static string PropertyName_CustomerOid = "CustomerOid"; public static string PropertyName_Benutzername = "BenutzerName"; public static string PropertyName_Passwort = "Passwort"; public static string PropertyName_BCryptPassword = "BCryptPassword"; private string _CustomerCode; private DateTime _CustomerCodeGenDate; private long? _CustomerOid; private int _IsChatAktiv; private string _BenutzerName; private string _Passwort; private string _BCryptPassword; public virtual string CustomerCode { get { return _CustomerCode; } set { if (this.AreDifferent(this._CustomerCode, value)) { this._CustomerCode = value; } } } public virtual DateTime CustomerCodeGenDate { get { return this._CustomerCodeGenDate; } set { if (this.AreDifferent(this._CustomerCodeGenDate, value)) { this._CustomerCodeGenDate = value; } } } public virtual long? CustomerOid { get { return this._CustomerOid; } set { if (this.AreDifferent(this._CustomerOid, value)) { this._CustomerOid = value; } } } public virtual int IsChatAktiv { get { return this._IsChatAktiv; } set { if (this.AreDifferent(this._IsChatAktiv, value)) { this._IsChatAktiv = value; } } } public virtual string BenutzerName { get { return _BenutzerName; } set { if (this.AreDifferent(this._BenutzerName, value)) { this._BenutzerName = value; } } } public virtual string Passwort { get { return _Passwort; } set { if (this.AreDifferent(this._Passwort, value)) { this._Passwort = value; } } } public virtual string BCryptPassword { get { return _BCryptPassword; } set { if (AreDifferent(_BCryptPassword, value)) { _BCryptPassword = value; } } } } }