Ejemplo n.º 1
0
 /// <summary>If _hasTransStarted is true, add the fee to _queueFeeUpdates with the specified UpdateType (Insert,Update,or Delete).</summary>
 private void UpdateFeeChangedStatus(Fee fee, FeeUpdateType updateType)
 {
     if (_hasTransStarted)              //Only do this if BeginTransaction has been called
     {
         _queueFeeUpdates.Enqueue(new FeeUpdate(fee.Copy(), updateType));
     }
 }
Ejemplo n.º 2
0
 ///<summary></summary>
 public FeeUpdate(Fee fee, FeeUpdateType updateType)
 {
     Fee        = fee;
     UpdateType = updateType;
 }