using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oImages { private Byte[] _Image = new Byte[] { Byte.MinValue }; public Byte[] Image { get {return this._Image;} set {this._Image = value;} } 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 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 _Name = String.Empty; public string Name { get {return this._Name;} set {this._Name = value;} } private string _Description = String.Empty; public string Description { get {return this._Description;} set {this._Description = value;} } }