From b02f38078d678d038404f73588f7ac7600e12eb2 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 10 Nov 2020 19:53:52 +0000 Subject: [PATCH] --- server/AyaNova/models/Customer.cs | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/server/AyaNova/models/Customer.cs b/server/AyaNova/models/Customer.cs index 3b12c289..31638617 100644 --- a/server/AyaNova/models/Customer.cs +++ b/server/AyaNova/models/Customer.cs @@ -28,14 +28,20 @@ namespace AyaNova.Models 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 long? HeadOfficeID { get; set; } + public string TechNotes { get; set; } + public string AccountNumber { get; set; } + public bool UsesBanking { get; set; } + public long? ContractID { get; set; } + public DateTime? ContractExpires { get; set; } + public long? DefaultServiceTemplateID { get; set; } + public Customer() { Tags = new List(); BillHeadOffice = false; + UsesBanking = false; } [NotMapped, JsonIgnore]