using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMedicalPractice { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _vatRate = 0; public int vatRate { get {return this._vatRate;} set {this._vatRate = value;} } private bool _isAstPaymentExVat = false; public bool isAstPaymentExVat { get {return this._isAstPaymentExVat;} set {this._isAstPaymentExVat = value;} } private string _name = String.Empty; public string name { get {return this._name;} set {this._name = value;} } private string _description = String.Empty; public string description { get {return this._description;} set {this._description = value;} } private string _qualifications = String.Empty; public string qualifications { get {return this._qualifications;} set {this._qualifications = value;} } private string _postal1 = String.Empty; public string postal1 { get {return this._postal1;} set {this._postal1 = value;} } private string _postal2 = String.Empty; public string postal2 { get {return this._postal2;} set {this._postal2 = value;} } private string _postal3 = String.Empty; public string postal3 { get {return this._postal3;} set {this._postal3 = value;} } private string _incNum = String.Empty; public string incNum { get {return this._incNum;} set {this._incNum = value;} } private string _branchCode = String.Empty; public string branchCode { get {return this._branchCode;} set {this._branchCode = value;} } private string _accountNo = String.Empty; public string accountNo { get {return this._accountNo;} set {this._accountNo = value;} } private string _accountType = String.Empty; public string accountType { get {return this._accountType;} set {this._accountType = value;} } private string _reference = String.Empty; public string reference { get {return this._reference;} set {this._reference = value;} } private string _practiceNo = String.Empty; public string practiceNo { get {return this._practiceNo;} set {this._practiceNo = value;} } private string _HPCSANo = String.Empty; public string HPCSANo { get {return this._HPCSANo;} set {this._HPCSANo = value;} } private string _tel = String.Empty; public string tel { get {return this._tel;} set {this._tel = value;} } private string _fax = String.Empty; public string fax { get {return this._fax;} set {this._fax = value;} } private string _mobile = String.Empty; public string mobile { get {return this._mobile;} set {this._mobile = value;} } private string _email = String.Empty; public string email { get {return this._email;} set {this._email = value;} } private string _bank = String.Empty; public string bank { get {return this._bank;} set {this._bank = value;} } private string _branch = String.Empty; public string branch { get {return this._branch;} set {this._branch = value;} } private string _postalCode = String.Empty; public string postalCode { get {return this._postalCode;} set {this._postalCode = value;} } private string _physical1 = String.Empty; public string physical1 { get {return this._physical1;} set {this._physical1 = value;} } private string _physical2 = String.Empty; public string physical2 { get {return this._physical2;} set {this._physical2 = value;} } private string _physical3 = String.Empty; public string physical3 { get {return this._physical3;} set {this._physical3 = value;} } private string _physicalCode = String.Empty; public string physicalCode { get {return this._physicalCode;} set {this._physicalCode = value;} } private string _vatNum = String.Empty; public string vatNum { get {return this._vatNum;} set {this._vatNum = value;} } }