using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMedicalAdministrator { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private DateTime _dateAdded = DateTime.MinValue; public DateTime dateAdded { get {return this._dateAdded;} set {this._dateAdded = value;} } private DateTime _dateUpdated = DateTime.MinValue; public DateTime dateUpdated { get {return this._dateUpdated;} set {this._dateUpdated = value;} } private DateTime _msEndDate = DateTime.MinValue; public DateTime msEndDate { get {return this._msEndDate;} set {this._msEndDate = value;} } private bool _msMSVAllowed = false; public bool msMSVAllowed { get {return this._msMSVAllowed;} set {this._msMSVAllowed = value;} } private bool _msReversalAllowed = false; public bool msReversalAllowed { get {return this._msReversalAllowed;} set {this._msReversalAllowed = value;} } private bool _splitModifiers = false; public bool splitModifiers { get {return this._splitModifiers;} set {this._splitModifiers = value;} } private string _medSchemeName = String.Empty; public string medSchemeName { get {return this._medSchemeName;} set {this._medSchemeName = value;} } private string _administratorName = String.Empty; public string administratorName { get {return this._administratorName;} set {this._administratorName = value;} } private string _msDestinationCode = String.Empty; public string msDestinationCode { get {return this._msDestinationCode;} set {this._msDestinationCode = value;} } private string _msQEDICode = String.Empty; public string msQEDICode { get {return this._msQEDICode;} set {this._msQEDICode = value;} } }