using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oTariffRate { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private decimal _rate = 0; public decimal rate { get {return this._rate;} set {this._rate = value;} } private decimal _iHRate = 0; public decimal iHRate { get {return this._iHRate;} set {this._iHRate = value;} } private decimal _oHRate = 0; public decimal oHRate { get {return this._oHRate;} set {this._oHRate = value;} } private string _planCode = String.Empty; public string planCode { get {return this._planCode;} set {this._planCode = value;} } private string _procedureCode = String.Empty; public string procedureCode { get {return this._procedureCode;} set {this._procedureCode = value;} } }