Пример #1
0
        /// <summary>
        /// Create the QCL record.
        /// </summary>
        /// <param name="context"></param>
        protected override void DoWork(CodeActivityContext context)
        {
            var mgr = new NotesManager {
                PM = PM
            };
            int noteId = mgr.CreateNote(PatId1.Get(context),
                                        NoteType.Get(context),
                                        Subject.Get(context),
                                        Note.Get(context));

            NoteId.Set(context, noteId);
        }