Пример #1
0
 public DataRowConfig FindRow(DataRowType rowType)
 {
     if (Rows == null)
     {
         return(null);
     }
     return(Rows.Where(o => o.Type == rowType).FirstOrDefault());
 }
Пример #2
0
 public DataRowConfig(DataRowType rowType, string rowPattern)
 {
     this.Type    = rowType;
     this.Pattern = rowPattern;
 }
Пример #3
0
 public DataRowConfig(DataRowType rowType, int rowIndex)
 {
     this.Type  = rowType;
     this.Index = rowIndex;
 }