using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oCustomerCode { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _lastNumberUsed = 0; public int lastNumberUsed { get {return this._lastNumberUsed;} set {this._lastNumberUsed = value;} } private string _prefix = String.Empty; public string prefix { get {return this._prefix;} set {this._prefix = value;} } }