using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oUser { private string _addressPhysical = String.Empty; public string addressPhysical { get { return this._addressPhysical; } set { this._addressPhysical = value; } } private string _addressPostal = String.Empty; public string addressPostal { get { return this._addressPostal; } set { this._addressPostal = value; } } private string _addressCompany = String.Empty; public string addressCompany { get { return this._addressCompany; } set { this._addressCompany = value; } } private int _recId = 0; public int recId { get { return this._recId; } set { this._recId = value; } } private int _userType = 0; public int userType { get { return this._userType; } set { this._userType = value; } } private int _verifyCodeWrongAttempts = 0; public int verifyCodeWrongAttempts { get { return this._verifyCodeWrongAttempts; } set { this._verifyCodeWrongAttempts = value; } } private int _mimicUserType = 0; public int mimicUserType { get { return this._mimicUserType; } set { this._mimicUserType = value; } } private DateTime _birthDate = DateTime.MinValue; public DateTime birthDate { get { return this._birthDate; } set { this._birthDate = 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 DateTime _dateLoggedOn = DateTime.MinValue; public DateTime dateLoggedOn { get { return this._dateLoggedOn; } set { this._dateLoggedOn = value; } } private DateTime _verifyCodeValidUntil = DateTime.MinValue; public DateTime verifyCodeValidUntil { get { return this._verifyCodeValidUntil; } set { this._verifyCodeValidUntil = value; } } private bool _isTermsAccepted = false; public bool isTermsAccepted { get { return this._isTermsAccepted; } set { this._isTermsAccepted = value; } } private bool _isActive = false; public bool isActive { get { return this._isActive; } set { this._isActive = value; } } private bool _isReset = false; public bool isReset { get { return this._isReset; } set { this._isReset = value; } } private bool _isSetup = false; public bool isSetup { get { return this._isSetup; } set { this._isSetup = value; } } private string _customerCode = String.Empty; public string customerCode { get { return this._customerCode; } set { this._customerCode = value; } } private string _cookieId = String.Empty; public string cookieId { get { return this._cookieId; } set { this._cookieId = value; } } private string _title = String.Empty; public string title { get { return this._title; } set { this._title = value; } } private string _name = String.Empty; public string name { get { return this._name; } set { this._name = value; } } private string _surname = String.Empty; public string surname { get { return this._surname; } set { this._surname = value; } } private string _idNumber = String.Empty; public string idNumber { get { return this._idNumber; } set { this._idNumber = value; } } private string _modules = String.Empty; public string modules { get { return this._modules; } set { this._modules = value; } } private string _userDisplay = String.Empty; public string userDisplay { get { return this._userDisplay; } set { this._userDisplay = value; } } private string _verifyCode = String.Empty; public string verifyCode { get { return this._verifyCode; } set { this._verifyCode = value; } } private string _company = String.Empty; public string company { get { return this._company; } set { this._company = value; } } private string _email = String.Empty; public string email { get { return this._email; } set { this._email = value; } } private string _password = String.Empty; public string password { get { return this._password; } set { this._password = value; } } private string _tel = String.Empty; public string tel { get { return this._tel; } set { this._tel = value; } } private string _vatNum = String.Empty; public string vatNum { get { return this._vatNum; } set { this._vatNum = value; } } private string _resetCode = String.Empty; public string resetCode { get { return this._resetCode; } set { this._resetCode = value; } } }