gov.va.medora.mdws.dto.LabSpecimenTO.LabSpecimenTO C# (CSharp) Method

LabSpecimenTO() public method

public LabSpecimenTO ( LabSpecimen mdo ) : System
mdo LabSpecimen
return System
        public LabSpecimenTO(LabSpecimen mdo)
        {
            this.id = mdo.Id;
            this.name = StringUtils.stripInvalidXmlCharacters(mdo.Name);
            this.collectionDate = mdo.CollectionDate;
            this.accessionNum = mdo.AccessionNumber;
            this.site = mdo.Site;
            if (mdo.Facility != null)
            {
                this.facility = new TaggedText(mdo.Facility.Name);
            }
        }

Same methods

LabSpecimenTO::LabSpecimenTO ( ) : System
LabSpecimenTO