Exemplo n.º 1
0
 internal void FillAuthors(TNoteAuthorList Authors)
 {
     for (int i = 0; i < Count; i++)
     {
         this[i].FillAuthors(Authors);
     }
 }
Exemplo n.º 2
0
        public TNoteAuthorList GetAuthors()
        {
            TNoteAuthorList Result = new TNoteAuthorList();

            for (int i = 0; i < Count; i++)
            {
                this[i].FillAuthors(Result);
            }

            return(Result);
        }
Exemplo n.º 3
0
 internal void FillAuthors(TNoteAuthorList Authors)
 {
     Authors.AddAuthor(GetAuthor());
 }