Ejemplo n.º 1
0
 public CellValidation(CellLocation firstCellLocation, string[] listOfValues,
                       List <CellData> firstList, CellLocation secondCellLocation, List <CellData> secondList)
 {
     FirstCellLocation  = firstCellLocation;
     ListOfValues       = listOfValues;
     FirstList          = firstList;
     SecondCellLocation = secondCellLocation;
     SecondList         = secondList;
 }
Ejemplo n.º 2
0
 public CellValidation(CellLocation firstCellLocation,
                       List <CellData> firstList, CellLocation secondCellLocation, List <CellData> secondList)
     : this(firstCellLocation, null, firstList, secondCellLocation, secondList)
 {
 }