using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oPlaceOfService { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _indicator = 0; public int indicator { get {return this._indicator;} set {this._indicator = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private string _display = String.Empty; public string display { get {return this._display;} set {this._display = value;} } private string _rateType = String.Empty; public string rateType { get {return this._rateType;} set {this._rateType = value;} } }