using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMedicalScheme { private string _notes = String.Empty; public string notes { get {return this._notes;} set {this._notes = value;} } private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private DateTime _modifierRuleDate = DateTime.MinValue; public DateTime modifierRuleDate { get {return this._modifierRuleDate;} set {this._modifierRuleDate = value;} } private bool _claimActivated = false; public bool claimActivated { get {return this._claimActivated;} set {this._claimActivated = value;} } private bool _modifierRule = false; public bool modifierRule { get {return this._modifierRule;} set {this._modifierRule = value;} } private string _code = String.Empty; public string code { get {return this._code;} set {this._code = value;} } private string _name = String.Empty; public string name { get {return this._name;} set {this._name = 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 _address3 = String.Empty; public string address3 { get {return this._address3;} set {this._address3 = value;} } private string _postCode = String.Empty; public string postCode { get {return this._postCode;} set {this._postCode = value;} } private string _msDestinationCode = String.Empty; public string msDestinationCode { get {return this._msDestinationCode;} set {this._msDestinationCode = value;} } private string _contact = String.Empty; public string contact { get {return this._contact;} set {this._contact = 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 _email = String.Empty; public string email { get {return this._email;} set {this._email = value;} } private string _planCode = String.Empty; public string planCode { get {return this._planCode;} set {this._planCode = value;} } private string _claimActivationCode = String.Empty; public string claimActivationCode { get {return this._claimActivationCode;} set {this._claimActivationCode = value;} } }