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