public TimeOutOperatorCtrl(OperatorCtrlBase other, string operationName)
     : base(other, operationName)
 {
 }
 public OperatorCtrlBase(OperatorCtrlBase other, string operationName)
 {
     _other = other;
     _operationName = operationName;
     _threadDataInformation = ThreadData.Information;
 }
 public RetryOperator(OperatorCtrlBase other, string operationName, Action beforeRun, Action<Exception> afterFail)
     : base(other, operationName)
 {
     _afterFail = afterFail;
     _beforeRun = beforeRun;
 }