OpenTransaction() public method

public OpenTransaction ( Transaction t ) : void
t Transaction
return void
Beispiel #1
0
 Transaction(ActionManager actionManager, bool delayed)
 {
     Actions       = new List <IAction>();
     ActionManager = actionManager;
     actionManager.OpenTransaction(this);
     IsDelayed = delayed;
 }
Beispiel #2
0
 Transaction(ActionManager actionManager, bool delayed)
 {
     Actions = new List<IAction>();
     ActionManager = actionManager;
     actionManager.OpenTransaction(this);
     IsDelayed = delayed;
 }