using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMedicalProcedure { 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 int _codeType = 0; public int codeType { get {return this._codeType;} set {this._codeType = value;} } private int _stockType = 0; public int stockType { get {return this._stockType;} set {this._stockType = value;} } private bool _claimActive = false; public bool claimActive { get {return this._claimActive;} set {this._claimActive = value;} } private bool _modifierRule = false; public bool modifierRule { get {return this._modifierRule;} set {this._modifierRule = value;} } private bool _nonSurgical = false; public bool nonSurgical { get {return this._nonSurgical;} set {this._nonSurgical = value;} } private bool _additionalDescription = false; public bool additionalDescription { get {return this._additionalDescription;} set {this._additionalDescription = value;} } private bool _useMacroRate = false; public bool useMacroRate { get {return this._useMacroRate;} set {this._useMacroRate = value;} } private decimal _modifier = 0; public decimal modifier { get {return this._modifier;} set {this._modifier = value;} } private string _code = String.Empty; public string code { get {return this._code;} set {this._code = value;} } private string _description = String.Empty; public string description { get {return this._description;} set {this._description = value;} } private string _comments = String.Empty; public string comments { get {return this._comments;} set {this._comments = value;} } private string _nappi = String.Empty; public string nappi { get {return this._nappi;} set {this._nappi = value;} } private string _nappiSuffix = String.Empty; public string nappiSuffix { get {return this._nappiSuffix;} set {this._nappiSuffix = value;} } private string _icd1 = String.Empty; public string icd1 { get {return this._icd1;} set {this._icd1 = value;} } private string _procedureAbbreviation = String.Empty; public string procedureAbbreviation { get {return this._procedureAbbreviation;} set {this._procedureAbbreviation = value;} } private string _macroProcedures = String.Empty; public string macroProcedures { get {return this._macroProcedures;} set {this._macroProcedures = value;} } private string _icd2 = String.Empty; public string icd2 { get {return this._icd2;} set {this._icd2 = value;} } private string _icd3 = String.Empty; public string icd3 { get {return this._icd3;} set {this._icd3 = value;} } private string _icd4 = String.Empty; public string icd4 { get {return this._icd4;} set {this._icd4 = value;} } private string _icd5 = String.Empty; public string icd5 { get {return this._icd5;} set {this._icd5 = value;} } private string _consumableCode = String.Empty; public string consumableCode { get {return this._consumableCode;} set {this._consumableCode = value;} } private string _additionalDescriptionOptions = String.Empty; public string additionalDescriptionOptions { get {return this._additionalDescriptionOptions;} set {this._additionalDescriptionOptions = value;} } }