using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oNotes { private Guid _gID = Guid.NewGuid(); public Guid gID { get {return this._gID;} set {this._gID = value;} } private int _ID = 0; public int ID { get {return this._ID;} set {this._ID = value;} } private int _PatientID = 0; public int PatientID { get {return this._PatientID;} set {this._PatientID = value;} } private int _createUser = 0; public int createUser { get {return this._createUser;} set {this._createUser = value;} } private int _modifyUser = 0; public int modifyUser { get {return this._modifyUser;} set {this._modifyUser = value;} } private int _NoteTypeID = 0; public int NoteTypeID { get {return this._NoteTypeID;} set {this._NoteTypeID = value;} } private DateTime _createDate = DateTime.MinValue; public DateTime createDate { get {return this._createDate;} set {this._createDate = value;} } private DateTime _modifyDate = DateTime.MinValue; public DateTime modifyDate { get {return this._modifyDate;} set {this._modifyDate = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private string _Note = String.Empty; public string Note { get {return this._Note;} set {this._Note = value;} } }