using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oBodyParts { private int _pkID = 0; public int pkID { get {return this._pkID;} set {this._pkID = value;} } private int _fkComplaintID = 0; public int fkComplaintID { get {return this._fkComplaintID;} set {this._fkComplaintID = value;} } private int _fkBodyID = 0; public int fkBodyID { get {return this._fkBodyID;} set {this._fkBodyID = value;} } }