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;
            }
        }