using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMSEraBankDeposit { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _eraId = 0; public int eraId { get {return this._eraId;} set {this._eraId = value;} } private DateTime _paymentDate = DateTime.MinValue; public DateTime paymentDate { get {return this._paymentDate;} set {this._paymentDate = value;} } private decimal _paymentAmount = 0; public decimal paymentAmount { get {return this._paymentAmount;} set {this._paymentAmount = value;} } private string _paidToAccountNumber = String.Empty; public string paidToAccountNumber { get {return this._paidToAccountNumber;} set {this._paidToAccountNumber = value;} } private string _paidToBranchCode = String.Empty; public string paidToBranchCode { get {return this._paidToBranchCode;} set {this._paidToBranchCode = value;} } private string _paidToBankName = String.Empty; public string paidToBankName { get {return this._paidToBankName;} set {this._paidToBankName = value;} } private string _paymentMethod = String.Empty; public string paymentMethod { get {return this._paymentMethod;} set {this._paymentMethod = value;} } private string _paymentReferenceNumber = String.Empty; public string paymentReferenceNumber { get {return this._paymentReferenceNumber;} set {this._paymentReferenceNumber = value;} } }