Exemplo n.º 1
0
 public TableParser([NotNull] ITable target, [NotNull] ITableNavigator navigator)
 {
     this.target    = target;
     this.navigator = navigator;
 }
Exemplo n.º 2
0
 public TableBuilder([NotNull] ITable target, [NotNull] ITableNavigator navigator, [CanBeNull] IStyle style = null)
 {
     this.target    = target;
     this.navigator = navigator;
     styles         = new Stack <IStyle>(new[] { style });
 }