Esempio n. 1
0
        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);
        }
Esempio n. 2
0
 internal void OnDataRowRemoving(DataRowEventArgs e)
 {
     DataRowRemoving(this, e);
 }
Esempio n. 3
0
 internal void OnAfterDataRowInserted(DataRowEventArgs e)
 {
     AfterDataRowInserted(this, e);
     _computationManager?.OnAfterDataRowInserted(e.DataRow);
 }
Esempio n. 4
0
 internal void OnBeforeDataRowInserted(DataRowEventArgs e)
 {
     _computationManager?.OnBeforeDataRowInserted(e.DataRow);
     BeforeDataRowInserted(this, e);
 }
Esempio n. 5
0
 internal void OnDataRowInserting(DataRowEventArgs e)
 {
     DataRowInserting(this, e);
 }