Пример #1
0
		public void Initialize(ReconcileStudyProcessorContext context, bool complete)
		{
			Platform.CheckForNullReference(context, "context");
			Context = context;

			ProcessAsIsCommand command = new ProcessAsIsCommand(Context, complete);

			AddCommand(command);

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

            ProcessAsIsCommand command = new ProcessAsIsCommand(Context, complete);

            AddCommand(command);

            if (complete)
            {
                AddCleanupCommands();
            }
        }