Esempio n. 1
0
 public IFunction AddRowFields(string fName)
 {
     RowArguments.Add(new ParamFields()
     {
         FieldName = fName
     });
     return(this);
 }
 public Filter(RowArguments rowArguments, string column, string filterWord, string value, bool exactMatch, bool negate)
 {
     RowCell      = RowCell.Row;
     Column       = column;
     RowArguments = rowArguments;
     FilterWord   = filterWord;
     Value        = value;
     ExactMatch   = exactMatch;
     Negate       = negate;
 }