Beispiel #1
0
        public void Initialize(ReconcileStudyProcessorContext context, bool complete)
        {
            Platform.CheckForNullReference(context, "context");
            Context = context;

            DiscardImagesCommand discard = new DiscardImagesCommand(context);

            AddCommand(discard);

            if (complete)
            {
                AddCleanupCommands();
            }
        }
		public void Initialize(ReconcileStudyProcessorContext context, bool complete)
		{
			Platform.CheckForNullReference(context, "context");
            Context = context;

			DiscardImagesCommand discard = new DiscardImagesCommand(context);

			AddCommand(discard);

            if (complete)
            {
                AddCleanupCommands();
            }
            
		}