Example #1
0
        public TranscriptEntry AddTranscriptEntry(TranscriptEntryTypes type, string text)
        {
            var entry = new TranscriptEntry(type, text);

            Add(entry);
            return(entry);
        }
Example #2
0
        public TranscriptEntry AddTranscriptEntry(TranscriptEntryTypes type, string text)
        {
            TranscriptEntry entry = new TranscriptEntry(type, text);

            Items.Add(entry);

            return(entry);
        }
 public TranscriptEntry(TranscriptEntryTypes type, string text)
 {
     _type = type;
     _text = text;
 }
Example #4
0
 public TranscriptEntry(TranscriptEntryTypes type, string text)
 {
     _type = type;
     _text = text;
 }