public MccPatientCallTemplate(string noteTitle)
        {
            this.TabList = new List <MccPatientCallTab>();

            TiuNoteTitle title = TiuNoteTitleInfo.GetTitle(noteTitle);

            int index = Array.IndexOf(titles, title);

            if (index >= 0)
            {
                this.CallType = (MccPatientCallType)index;
            }
        }
 public AdditionalCallNote()
 {
     this.Note       = new TiuNote();
     this.Note.Title = TiuNoteTitleInfo.GetTitleText(TiuNoteTitle.PhoneCallAdditional);
 }