using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMSEra { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _fetchResponseId = 0; public int fetchResponseId { get {return this._fetchResponseId;} set {this._fetchResponseId = value;} } private DateTime _eraIssueDate = DateTime.MinValue; public DateTime eraIssueDate { get {return this._eraIssueDate;} set {this._eraIssueDate = value;} } private decimal _openingBalance = 0; public decimal openingBalance { get {return this._openingBalance;} set {this._openingBalance = value;} } private decimal _closingBalance = 0; public decimal closingBalance { get {return this._closingBalance;} set {this._closingBalance = value;} } private decimal _totalEraClaimedAmount = 0; public decimal totalEraClaimedAmount { get {return this._totalEraClaimedAmount;} set {this._totalEraClaimedAmount = value;} } private decimal _totalEraPaidAmount = 0; public decimal totalEraPaidAmount { get {return this._totalEraPaidAmount;} set {this._totalEraPaidAmount = value;} } private decimal _totalEraJournalAmount = 0; public decimal totalEraJournalAmount { get {return this._totalEraJournalAmount;} set {this._totalEraJournalAmount = value;} } private string _medicalSchemeName = String.Empty; public string medicalSchemeName { get {return this._medicalSchemeName;} set {this._medicalSchemeName = value;} } private string _medicalSchemeAdministrator = String.Empty; public string medicalSchemeAdministrator { get {return this._medicalSchemeAdministrator;} set {this._medicalSchemeAdministrator = value;} } private string _medicalSchemeRegistrationNumber = String.Empty; public string medicalSchemeRegistrationNumber { get {return this._medicalSchemeRegistrationNumber;} set {this._medicalSchemeRegistrationNumber = value;} } private string _eraReferenceNumber = String.Empty; public string eraReferenceNumber { get {return this._eraReferenceNumber;} set {this._eraReferenceNumber = value;} } private string _disclaimer = String.Empty; public string disclaimer { get {return this._disclaimer;} set {this._disclaimer = value;} } }