using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oCustomer { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private DateTime _licenceDate = DateTime.MinValue; public DateTime licenceDate { get {return this._licenceDate;} set {this._licenceDate = value;} } private DateTime _versionDate = DateTime.MinValue; public DateTime versionDate { get {return this._versionDate;} set {this._versionDate = value;} } private DateTime _dateCreated = DateTime.MinValue; public DateTime dateCreated { get {return this._dateCreated;} set {this._dateCreated = value;} } private DateTime _dateUpdated = DateTime.MinValue; public DateTime dateUpdated { get {return this._dateUpdated;} set {this._dateUpdated = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private bool _isPublished = false; public bool isPublished { get {return this._isPublished;} set {this._isPublished = value;} } private bool _vatRegistered = false; public bool vatRegistered { get {return this._vatRegistered;} set {this._vatRegistered = value;} } private decimal _vatRate = 0; public decimal vatRate { get {return this._vatRate;} set {this._vatRate = value;} } private string _customer = String.Empty; public string customer { get {return this._customer;} set {this._customer = value;} } private string _code = String.Empty; public string code { get {return this._code;} set {this._code = value;} } private string _licenceKey = String.Empty; public string licenceKey { get {return this._licenceKey;} set {this._licenceKey = value;} } private string _versionNo = String.Empty; public string versionNo { get {return this._versionNo;} set {this._versionNo = value;} } private string _email = String.Empty; public string email { get {return this._email;} set {this._email = value;} } private string _tel = String.Empty; public string tel { get {return this._tel;} set {this._tel = value;} } private string _tradingAs = String.Empty; public string tradingAs { get {return this._tradingAs;} set {this._tradingAs = value;} } private string _postalProvinceState = String.Empty; public string postalProvinceState { get {return this._postalProvinceState;} set {this._postalProvinceState = value;} } private string _postalCountry = String.Empty; public string postalCountry { get {return this._postalCountry;} set {this._postalCountry = value;} } private string _physicalProvinceState = String.Empty; public string physicalProvinceState { get {return this._physicalProvinceState;} set {this._physicalProvinceState = value;} } private string _physicalCountry = String.Empty; public string physicalCountry { get {return this._physicalCountry;} set {this._physicalCountry = value;} } private string _communicationEmail = String.Empty; public string communicationEmail { get {return this._communicationEmail;} set {this._communicationEmail = value;} } private string _sendingEmailName = String.Empty; public string sendingEmailName { get {return this._sendingEmailName;} set {this._sendingEmailName = value;} } private string _financialYearEnd = String.Empty; public string financialYearEnd { get {return this._financialYearEnd;} set {this._financialYearEnd = value;} } private string _vatPeriodStartMonth = String.Empty; public string vatPeriodStartMonth { get {return this._vatPeriodStartMonth;} set {this._vatPeriodStartMonth = value;} } private string _physicalStreet = String.Empty; public string physicalStreet { get {return this._physicalStreet;} set {this._physicalStreet = value;} } private string _physicalSuburb = String.Empty; public string physicalSuburb { get {return this._physicalSuburb;} set {this._physicalSuburb = value;} } private string _physicalCity = String.Empty; public string physicalCity { get {return this._physicalCity;} set {this._physicalCity = value;} } private string _physicalCode = String.Empty; public string physicalCode { get {return this._physicalCode;} set {this._physicalCode = value;} } private string _postalStreet = String.Empty; public string postalStreet { get {return this._postalStreet;} set {this._postalStreet = value;} } private string _postalSuburb = String.Empty; public string postalSuburb { get {return this._postalSuburb;} set {this._postalSuburb = value;} } private string _postalCity = String.Empty; public string postalCity { get {return this._postalCity;} set {this._postalCity = value;} } private string _postalCode = String.Empty; public string postalCode { get {return this._postalCode;} set {this._postalCode = value;} } private string _vatRegistrationNumber = String.Empty; public string vatRegistrationNumber { get {return this._vatRegistrationNumber;} set {this._vatRegistrationNumber = value;} } private string _logoUploaded = String.Empty; public string logoUploaded { get {return this._logoUploaded;} set {this._logoUploaded = value;} } private string _primaryPerson = String.Empty; public string primaryPerson { get {return this._primaryPerson;} set {this._primaryPerson = value;} } private string _contactMobile = String.Empty; public string contactMobile { get {return this._contactMobile;} set {this._contactMobile = value;} } private string _typeOfBusiness = String.Empty; public string typeOfBusiness { get {return this._typeOfBusiness;} set {this._typeOfBusiness = value;} } private string _country = String.Empty; public string country { get {return this._country;} set {this._country = value;} } private string _countryCode = String.Empty; public string countryCode { get {return this._countryCode;} set {this._countryCode = value;} } private string _gmtTimeZone = String.Empty; public string gmtTimeZone { get {return this._gmtTimeZone;} set {this._gmtTimeZone = value;} } }