using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class ovAccountsClaimable { private int _surfaceItemId = 0; public int surfaceItemId { get {return this._surfaceItemId;} set {this._surfaceItemId = value;} } private int _claimLogId = 0; public int claimLogId { get {return this._claimLogId;} set {this._claimLogId = value;} } private int _invoiceNo = 0; public int invoiceNo { get {return this._invoiceNo;} set {this._invoiceNo = value;} } private DateTime _dateOfService = DateTime.MinValue; public DateTime dateOfService { get {return this._dateOfService;} set {this._dateOfService = value;} } private bool _msReversalAllowed = false; public bool msReversalAllowed { get {return this._msReversalAllowed;} set {this._msReversalAllowed = value;} } private decimal _liablePat = 0; public decimal liablePat { get {return this._liablePat;} set {this._liablePat = value;} } private decimal _liableMed = 0; public decimal liableMed { get {return this._liableMed;} set {this._liableMed = value;} } private decimal _amount = 0; public decimal amount { get {return this._amount;} set {this._amount = value;} } private string _patientName = String.Empty; public string patientName { get {return this._patientName;} set {this._patientName = value;} } private string _patientSurname = String.Empty; public string patientSurname { get {return this._patientSurname;} set {this._patientSurname = value;} } private string _medCode = String.Empty; public string medCode { get {return this._medCode;} set {this._medCode = value;} } private string _MedPlan = String.Empty; public string MedPlan { get {return this._MedPlan;} set {this._MedPlan = value;} } private string _icd1 = String.Empty; public string icd1 { get {return this._icd1;} set {this._icd1 = value;} } private string _externalCause = String.Empty; public string externalCause { get {return this._externalCause;} set {this._externalCause = value;} } private string _result = String.Empty; public string result { get {return this._result;} set {this._result = value;} } private string _icdDescription = String.Empty; public string icdDescription { get {return this._icdDescription;} set {this._icdDescription = value;} } private string _procedures = String.Empty; public string procedures { get {return this._procedures;} set {this._procedures = value;} } private string _response = String.Empty; public string response { get {return this._response;} set {this._response = value;} } private string _comment = String.Empty; public string comment { get {return this._comment;} set {this._comment = value;} } private string _responseParty = String.Empty; public string responseParty { get {return this._responseParty;} set {this._responseParty = value;} } private string _resultCode = String.Empty; public string resultCode { get {return this._resultCode;} set {this._resultCode = value;} } }