using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oPaymentType { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _transactionTypeId = 0; public int transactionTypeId { get {return this._transactionTypeId;} set {this._transactionTypeId = value;} } private bool _allowAllocations = false; public bool allowAllocations { get {return this._allowAllocations;} set {this._allowAllocations = value;} } private string _paymentCode = String.Empty; public string paymentCode { get {return this._paymentCode;} set {this._paymentCode = value;} } private string _paymentType = String.Empty; public string paymentType { get {return this._paymentType;} set {this._paymentType = value;} } }