Example #1
0
 public void OnBeforeDelete(ActiveRecordTransactionEventArgs e)
 {
     if (BeforeDelete != null)
     {
         BeforeDelete(this, e);
     }
 }
 public void OnBeforeUpdate(ActiveRecordTransactionEventArgs e)
 {
     if (BeforeUpdate != null)
         BeforeUpdate(this, e);
 }