Exemple #1
0
        public void Set(aECGDevice msd)
        {
            if ((this.Id != null) &&
                (msd.Id != null))
            {
                this.Id.Root      = msd.Id.Root;
                this.Id.Extension = msd.Id.Extension;
            }

            this.Code.Code           = msd.Code.Code;
            this.Code.CodeSystem     = msd.Code.CodeSystem;
            this.Code.CodeSystemName = msd.Code.CodeSystemName;
            this.Code.DisplayName    = msd.Code.DisplayName;

            this.manufacturerModelName = msd.manufacturerModelName;
            this.softwareName          = msd.softwareName;

            if ((this.PlayedManufacturedDevice != null) &&
                (msd.PlayedManufacturedDevice != null))
            {
                this.PlayedManufacturedDevice.ManufacturerOrganization.Set(msd.PlayedManufacturedDevice.ManufacturerOrganization);
            }
        }