This commit is contained in:
2022-12-27 22:42:42 +00:00
parent 0a2f91ed4c
commit 5edfcdd47d
7 changed files with 97 additions and 10 deletions

View File

@@ -10,7 +10,6 @@ namespace Sockeye.Models
//NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal,
//otherwise the server will call it an invalid record if the field isn't sent from client
//#### MIRRORED IN QBI !!
public class Customer : ICoreBizObjectModel
{
public long Id { get; set; }
@@ -19,14 +18,14 @@ namespace Sockeye.Models
[Required]
public string Name { get; set; }
public bool Active { get; set; }
public bool DoNotContact { get; set; }
public string DbId { get; set; }
public string Notes { get; set; }
public string Wiki { get; set; }
public string CustomFields { get; set; }
public List<string> Tags { get; set; }
//cant use these due to import v7 malformed shit adn can't be arsed to deal with that
//[Url]
public string WebAddress { get; set; }
public string AlertNotes { get; set; }
public bool BillHeadOffice { get; set; }
@@ -35,7 +34,7 @@ namespace Sockeye.Models
public string HeadOfficeViz { get; set; }
public string TechNotes { get; set; }
public string AccountNumber { get; set; }
public string Phone1 { get; set; }
public string Phone2 { get; set; }
public string Phone3 { get; set; }