using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMedicalDoctor { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _practiceId = 0; public int practiceId { get {return this._practiceId;} set {this._practiceId = value;} } private int _assistantType = 0; public int assistantType { get {return this._assistantType;} set {this._assistantType = value;} } private bool _isMember = false; public bool isMember { get {return this._isMember;} set {this._isMember = value;} } private bool _isAssistant = false; public bool isAssistant { get {return this._isAssistant;} set {this._isAssistant = value;} } private string _title = String.Empty; public string title { get {return this._title;} set {this._title = value;} } private string _initials = String.Empty; public string initials { get {return this._initials;} set {this._initials = 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 _address1 = String.Empty; public string address1 { get {return this._address1;} set {this._address1 = value;} } private string _address2 = String.Empty; public string address2 { get {return this._address2;} set {this._address2 = value;} } private string _mobile = String.Empty; public string mobile { get {return this._mobile;} set {this._mobile = value;} } private string _fax = String.Empty; public string fax { get {return this._fax;} set {this._fax = value;} } private string _details = String.Empty; public string details { get {return this._details;} set {this._details = value;} } private string _address3 = String.Empty; public string address3 { get {return this._address3;} set {this._address3 = value;} } private string _postalCode = String.Empty; public string postalCode { get {return this._postalCode;} set {this._postalCode = value;} } private string _BHFRegNo = String.Empty; public string BHFRegNo { get {return this._BHFRegNo;} set {this._BHFRegNo = value;} } private string _HPCSARegNo = String.Empty; public string HPCSARegNo { get {return this._HPCSARegNo;} set {this._HPCSARegNo = 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;} } }