Esempio n. 1
0
 public LogDataCollection(LogRowTemplate template)
 {
     if (template == null)
     {
         throw new ArgumentNullException();
     }
     this.Template = template;
 }
Esempio n. 2
0
 public LogDataCollection(LogRowTemplate template, List <LogDataEntry> initialData) : this(template)
 {
     AddRange(initialData);
 }