This commit is contained in:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user