Search Results for

    Show / Hide Table of Contents

    Class PatientSummary

    Basic information about the patient.

    Inheritance
    System.Object
    SerializableObject
    PatientSummary
    Implements
    System.Xml.Serialization.IXmlSerializable
    Inherited Members
    SerializableObject.GetSchema()
    SerializableObject.ReadXml(XmlReader)
    SerializableObject.ClearSerializationHistory()
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: VMS.TPS.Common.Model.API
    Assembly: VMS.TPS.Common.Model.API.dll
    Syntax
    public class PatientSummary : SerializableObject, IXmlSerializable

    Properties

    CreationDateTime

    The date when the patient object was created.

    Declaration
    public DateTime? CreationDateTime { get; }
    Property Value
    Type Description
    System.Nullable<System.DateTime>

    DateOfBirth

    The date of birth of the patient.

    Declaration
    public DateTime? DateOfBirth { get; }
    Property Value
    Type Description
    System.Nullable<System.DateTime>

    FirstName

    The first name of the patient.

    Declaration
    public string FirstName { get; }
    Property Value
    Type Description
    System.String

    Id

    The patient ID.

    Declaration
    public string Id { get; }
    Property Value
    Type Description
    System.String

    Id2

    The patient ID2.

    Declaration
    public string Id2 { get; }
    Property Value
    Type Description
    System.String

    LastName

    The last name of the patient.

    Declaration
    public string LastName { get; }
    Property Value
    Type Description
    System.String

    MiddleName

    The middle name of the patient.

    Declaration
    public string MiddleName { get; }
    Property Value
    Type Description
    System.String

    Sex

    The gender of the patient.

    Declaration
    public string Sex { get; }
    Property Value
    Type Description
    System.String

    SSN

    The Social Security Account Number (SSN) of the patient.

    Declaration
    public string SSN { get; }
    Property Value
    Type Description
    System.String

    Methods

    WriteXml(XmlWriter)

    Converts an object into its XML representation. For more information on how to serialize an object into an XML document, see System.Xml.Serialization.XmlSerializer.

    Declaration
    public override void WriteXml(XmlWriter writer)
    Parameters
    Type Name Description
    System.Xml.XmlWriter writer

    The System.Xml.XmlWriter stream, to which the object is serialized.

    Overrides
    SerializableObject.WriteXml(XmlWriter)

    Implements

    System.Xml.Serialization.IXmlSerializable
    In This Article
    Back to top