This commit is contained in:
2020-11-10 19:30:50 +00:00
parent 06e1604b0f
commit 010aa16574
24 changed files with 94 additions and 99 deletions

View File

@@ -24,9 +24,18 @@ namespace AyaNova.Models
public List<string> Tags { get; set; }
[Url]
public string WebAddress { get; set; }
public string PopUpNotes { get; set; }
public bool BillHeadOffice { get; set; }
public long HeadOfficeID { get; set; }
public string TechNotes { get; set; }
public Customer()
{
Tags = new List<string>();
BillHeadOffice = false;
}
[NotMapped, JsonIgnore]
@@ -35,3 +44,47 @@ namespace AyaNova.Models
}//eoc
}//eons
/*
[AID] [uniqueidentifier] NOT NULL,
[ANAME] [nvarchar](255) NOT NULL,
[ACREATED] [datetime] NULL,
[AMODIFIED] [datetime] NULL,
[AACTIVE] [bit] NOT NULL,
[ACREATOR] [uniqueidentifier] NULL,
[AMODIFIER] [uniqueidentifier] NULL,
[ADISPATCHZONEID] [uniqueidentifier] NULL,
[AWEBADDRESS] [nvarchar](255) NULL,
[APOPUPNOTES] [ntext] NULL,
[ACLIENTGROUPID] [uniqueidentifier] NULL,
[ABILLHEADOFFICE] [bit] NOT NULL,
[AHEADOFFICEID] [uniqueidentifier] NULL,
[ANOTES] [ntext] NULL,
[AREGIONID] [uniqueidentifier] NULL,
[ATECHNOTES] [ntext] NULL,
[AACCOUNTNUMBER] [nvarchar](255) NULL,
[ACUSTOM1] [ntext] NULL,
[ACUSTOM2] [ntext] NULL,
[ACUSTOM3] [ntext] NULL,
[ACUSTOM4] [ntext] NULL,
[ACUSTOM5] [ntext] NULL,
[ACUSTOM6] [ntext] NULL,
[ACUSTOM7] [ntext] NULL,
[ACUSTOM8] [ntext] NULL,
[ACUSTOM9] [ntext] NULL,
[ACUSTOM0] [ntext] NULL,
[AUSESBANKING] [bit] NOT NULL,
[ACONTRACTID] [uniqueidentifier] NULL,
[ACONTRACTEXPIRES] [datetime] NULL,
[ALASTWORKORDERID] [uniqueidentifier] NULL,
[ALASTSERVICEDATE] [datetime] NULL,
[ADEFAULTSERVICETEMPLATEID] [uniqueidentifier] NULL,
[ACONTACTNOTES] [ntext] NULL,
[ACONTACT] [nvarchar](500) NULL,
[APHONE1] [nvarchar](255) NULL,
[APHONE2] [nvarchar](255) NULL,
[APHONE3] [nvarchar](255) NULL,
[APHONE4] [nvarchar](255) NULL,
[APHONE5] [nvarchar](255) NULL,
[AEMAIL] [nvarchar](255) NULL,
[ASENDNOTIFICATIONS] [bit] NOT NULL,
*/