Beispiel #1
0
        public void Update(Guid Guid, Guid ServerPartitionGUID, string PatientsName, string PatientId,
                           string IssuerOfPatientId, int NumberOfPatientRelatedStudies, int NumberOfPatientRelatedSeries,
                           int NumberOfPatientRelatedInstances, string SpecificCharacterSet)
        {
            var item = new Patient();
            item.MarkOld();
            item.IsLoaded = true;

            item.Guid = Guid;

            item.ServerPartitionGUID = ServerPartitionGUID;

            item.PatientsName = PatientsName;

            item.PatientId = PatientId;

            item.IssuerOfPatientId = IssuerOfPatientId;

            item.NumberOfPatientRelatedStudies = NumberOfPatientRelatedStudies;

            item.NumberOfPatientRelatedSeries = NumberOfPatientRelatedSeries;

            item.NumberOfPatientRelatedInstances = NumberOfPatientRelatedInstances;

            item.SpecificCharacterSet = SpecificCharacterSet;

            item.Save(UserName);
        }