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