using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oSurfaceFieldData { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _surfaceId = 0; public int surfaceId { get {return this._surfaceId;} set {this._surfaceId = value;} } private int _surfaceItemId = 0; public int surfaceItemId { get {return this._surfaceItemId;} set {this._surfaceItemId = value;} } private int _surfaceFieldID = 0; public int surfaceFieldID { get {return this._surfaceFieldID;} set {this._surfaceFieldID = value;} } private int _surfaceFieldValueNum = 0; public int surfaceFieldValueNum { get {return this._surfaceFieldValueNum;} set {this._surfaceFieldValueNum = value;} } private int _surfaceFieldLookupID = 0; public int surfaceFieldLookupID { get {return this._surfaceFieldLookupID;} set {this._surfaceFieldLookupID = value;} } private DateTime _surfaceFieldValueDate = DateTime.MinValue; public DateTime surfaceFieldValueDate { get {return this._surfaceFieldValueDate;} set {this._surfaceFieldValueDate = value;} } private DateTime _surfaceFieldValueTime = DateTime.MinValue; public DateTime surfaceFieldValueTime { get {return this._surfaceFieldValueTime;} set {this._surfaceFieldValueTime = value;} } private bool _surfaceFieldValueBool = false; public bool surfaceFieldValueBool { get {return this._surfaceFieldValueBool;} set {this._surfaceFieldValueBool = value;} } private decimal _surfaceFieldValueDecimal = 0; public decimal surfaceFieldValueDecimal { get {return this._surfaceFieldValueDecimal;} set {this._surfaceFieldValueDecimal = value;} } private string _surfaceFieldValueChar = String.Empty; public string surfaceFieldValueChar { get {return this._surfaceFieldValueChar;} set {this._surfaceFieldValueChar = value;} } }