Ejemplo n.º 1
0
 public void OnBeforeDelete(ActiveRecordTransactionEventArgs e)
 {
     if (BeforeDelete != null)
     {
         BeforeDelete(this, e);
     }
 }
Ejemplo n.º 2
0
 public void OnBeforeUpdate(ActiveRecordTransactionEventArgs e)
 {
     if (BeforeUpdate != null)
         BeforeUpdate(this, e);
 }