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