internal void OnDataRowRemoving(DataRowEventArgs e)
        {
            var dataRow      = e.DataRow;
            var localColumns = dataRow.Model.LocalColumns;

            for (int i = 0; i < localColumns.Count; i++)
            {
                ((ILocalColumn)localColumns[i]).OnDataRowRemoving(dataRow);
            }
            DataRowRemoving(this, e);
        }
Exemple #2
0
 internal void OnDataRowRemoving(DataRowEventArgs e)
 {
     DataRowRemoving(this, e);
 }
Exemple #3
0
 internal void OnAfterDataRowInserted(DataRowEventArgs e)
 {
     AfterDataRowInserted(this, e);
     _computationManager?.OnAfterDataRowInserted(e.DataRow);
 }
Exemple #4
0
 internal void OnBeforeDataRowInserted(DataRowEventArgs e)
 {
     _computationManager?.OnBeforeDataRowInserted(e.DataRow);
     BeforeDataRowInserted(this, e);
 }
Exemple #5
0
 internal void OnDataRowInserting(DataRowEventArgs e)
 {
     DataRowInserting(this, e);
 }