private void dataGridViewCompare_CellEndEdit(object sender, DataGridViewCellEventArgs e)
        {
            string cellValue = WorkWithGridView.GetValue(dataGridViewCompare, e.RowIndex, e.ColumnIndex);

            _presenter.UpdateValueCellValueMatrixCompare(e.RowIndex, e.ColumnIndex, cellValue);
        }
        private void dataGridViewCriterions_CellEndEdit(object sender, DataGridViewCellEventArgs e)
        {
            string cellValue = WorkWithGridView.GetValue(dataGridViewCriterions, e.RowIndex, e.ColumnIndex);

            _presenter.UpdateCriterion(e.RowIndex, cellValue);
        }